Skip to content

Commit

Permalink
Merge pull request #204 from CharlesZheZhang/develop
Browse files Browse the repository at this point in the history
correct specific humidity magnitude for ERA5-Land forcing
  • Loading branch information
cenlinhe authored Aug 15, 2024
2 parents 4faeba2 + 27c13db commit 8680c16
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ for f in $FILES; do
cdo -s merge $outfile1 $SP_file $outfile2

outfile3=$(sed 's/'2D'/'Q'/g' <<< $f)
cdo -s -setparam,133.128 -expr,"var133=(0.622*var1)/(var134/100.-(0.378*var1))/1000." $outfile2 $outfile3
cdo -s -setparam,133.128 -expr,"var133=(0.622*var1)/(var134/100.-(0.378*var1))" $outfile2 $outfile3
# the output specific humidity in unit [kg/kg]
done
echo ""

Expand Down

0 comments on commit 8680c16

Please sign in to comment.