How can use cube (3) or square (2) by CDO to calculate values?
I do not understand how I can use cube (3) or square (2) by CDO to calculate wind density. Please see the following equation. We have data (m/s) in the NC file. --> infile.nc
How can use cube (3) or square (2) by CDO to calculate values?
I do not understand how I can use cube (3) or square (2) by CDO to calculate wind density. Please see the following equation. We have data (m/s) in the NC file. --> infile.nc
On a spoon:
cdo mulc,0.6125 -mul v.nc -mul v.nc v.nc windden.nc
To spell it out,
-mul v.nc v.nc
multiplies v by v,
and then
-mul v.nc
multiplies that by v to give the cube...
Alternatively, and slightly more concisely, you can use the square function sqr
:
cdo mulc,0.6125 -mul v.nc -sqr v.nc windden.nc