We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need an app for calculating integrated vapor transport from the HighResMIP models.
It will need to accept files containing both 4D (time, lev, lat ,lon) and 3D (time, lat, lon) variables:
It will output netCDF files containing IVT, a 3D field that contains the vertical integral of horizontal moisture transport.
A typical run command should be something like:
teca_ivt_integral \ --q_file_regex QFILEREGEX \ --u_file_regex UFILEREGEX \ --v_file_regex VFILEREGEX \ --qsfc_file_regex QSFCFILEREGEX \ --usfc_file_regex USFCFILEREGEX \ --vsfc_file_regex VSFCFILEREGEX \ --ps_file_regex PSFILEREGEX --q_var_name QVARNAME \ --u_var_name UVARNAME \ --v_var_name VVARNAME \ --ps_var_name PSVARNAME \ --output_ivt_var_name IVTVARNAME \ --output_file_name OUTPUTFILETEMPLATE \
The pipeline will be something like:
CF Reader --> Normalize Coordinates --> Moisture Transport vector (Q*U, V*Q) --> Vertical Integral (uIVT, vIVT) --> l2_norm (IVT) --> CF writer
Depends on:
The text was updated successfully, but these errors were encountered:
Sketch of pipeline from 10/6/20
This supersedes the pipeline described in the original issue text.
Sorry, something went wrong.
An update to the current task; we are only focusing on integration of 4D atmospheric data (ignoring surface 3D variables for now).
It will need to accept files containing both 4D (time, lev, lat ,lon):
4D variables humidity Q zonal wind U meridional wind V
teca_ivt_integral \ --q_file_regex QFILEREGEX \ --u_file_regex UFILEREGEX \ --v_file_regex VFILEREGEX \ --q_var_name QVARNAME \ --u_var_name UVARNAME \ --v_var_name VVARNAME \ --output_ivt_var_name IVTVARNAME \ --output_file_name OUTPUTFILETEMPLATE
burlen
elbashandy
Successfully merging a pull request may close this issue.
We need an app for calculating integrated vapor transport from the HighResMIP models.
It will need to accept files containing both 4D (time, lev, lat ,lon) and 3D (time, lat, lon) variables:
It will output netCDF files containing IVT, a 3D field that contains the vertical integral of horizontal moisture transport.
A typical run command should be something like:
The pipeline will be something like:
Depends on:
The text was updated successfully, but these errors were encountered: