Changeset 2044 in lmdz_wrf
- Timestamp:
- Aug 7, 2018, 6:07:51 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/get_WRFsounding-surface_data.bash
r2036 r2044 716 716 717 717 # Sounding 718 if test ! ${sndid} = 'None' ; then718 if test ! ${sndid} = 'None' && test ! ${wrfsnddiags} = 'None'; then 719 719 stid=${sndid} 720 720 simsndptf=${odir}'/simout_vars_sndpt_'${stid}'_'${expl}'_'${fdate}'.nc' … … 726 726 727 727 # Surface 728 if test ! ${sfcid} = 'None'; then 728 if test ! ${sfcid} = 'None' && test ! ${wrfsfcdiags} = 'None' || \ 729 test ! ${wrfsfcnodiags} = 'None'; then 729 730 stid=${sfcid} 730 731 simsfcptf=${odir}'/simout_vars_sfcpt_'${stid}'_'${expl}'_'${fdate}'.nc' … … 736 737 737 738 # Surface maps 738 simsfcmapf=${odir}'/simout_vars_sfcmap_'${expl}'_'${fdate}'.nc' 739 simsfcmapdiagsf=${odir}'/simout_sfcmapdiags_'${expl}'_'${fdate}'.nc' 740 741 fvals=${infilen}'#'${wrfsfcdiags}'#'${wrfsfcnodiags} 742 get_WRFsfc2D_data ${fvals} 739 if test ! ${wrfsfcdiags} = 'None' || test ! ${wrfsfcnodiags} = 'None'; then 740 simsfcmapf=${odir}'/simout_vars_sfcmap_'${expl}'_'${fdate}'.nc' 741 simsfcmapdiagsf=${odir}'/simout_sfcmapdiags_'${expl}'_'${fdate}'.nc' 742 743 fvals=${infilen}'#'${wrfsfcdiags}'#'${wrfsfcnodiags} 744 get_WRFsfc2D_data ${fvals} 745 fi 743 746 744 747 # cdx snd 745 if test ! ${sndid} = 'None'; then 748 if test ! ${sndid} = 'None' && test ! ${wrfcdxdiags} = 'None' || \ 749 test ! ${wrfcdxnodiags} = 'None'; then 746 750 stid=${sndid} 747 751 simsfcptf=${odir}'/simcdx_vars_sfcpt_'${stid}'_'${expl}'_'${fdate}'.nc' … … 754 758 755 759 # cdx Surface 756 if test ! ${sfcid} = 'None'; then 760 if test ! ${sfcid} = 'None' && test ! ${wrfcdxdiags} = 'None' || \ 761 test ! ${wrfcdxnodiags} = 'None'; then 757 762 stid=${sfcid} 758 763 simsfcptf=${odir}'/simcdx_vars_sfcpt_'${stid}'_'${expl}'_'${fdate}'.nc' … … 765 770 766 771 # cdx Surface maps 767 simsfcmapf=${odir}'/simcdx_vars_sfcmap_'${expl}'_'${fdate}'.nc' 768 simsfcmapdiagsf=${odir}'/simcdx_sfcmapdiags_'${expl}'_'${fdate}'.nc' 769 770 fvals=${infilen}'#'${wrfcdxdiags}'#'${wrfcdxnodiags} 771 get_WRFCDXsfc2D_data ${fvals} 772 if test ! ${wrfcdxdiags} = 'None' || test ! ${wrfcdxnodiags} = 'None'; then 773 simsfcmapf=${odir}'/simcdx_vars_sfcmap_'${expl}'_'${fdate}'.nc' 774 simsfcmapdiagsf=${odir}'/simcdx_sfcmapdiags_'${expl}'_'${fdate}'.nc' 775 776 fvals=${infilen}'#'${wrfcdxdiags}'#'${wrfcdxnodiags} 777 get_WRFCDXsfc2D_data ${fvals} 778 fi 772 779 773 780 fi
Note: See TracChangeset
for help on using the changeset viewer.