source: trunk/MESOSCALE_DEV/SRC/ARWpost/src/module_calc_pressure.f90 @ 1068

Last change on this file since 1068 was 207, checked in by aslmd, 14 years ago

MESOSCALE: A GENERAL CLEAN-UP FOLLOWING UPDATING THE USER MANUAL. EVERYTHING ESSENTIAL IS IN MESOSCALE (much lighter than before). EVERYTHING FOR DEVELOPPERS OR EXPERTS IS IN MESOSCALE_DEV.

File size: 455 bytes
Line 
1!! Diagnostics: Model Pressure in hPa
2
3MODULE module_calc_pressure
4
5  CONTAINS
6  SUBROUTINE calc_pressure(SCR, cname, cdesc, cunits)
7
8  USE module_model_basics
9
10  !Arguments
11  real, pointer, dimension(:,:,:)       :: SCR
12  character (len=128)                   :: cname, cdesc, cunits
13   
14
15  SCR      = PRES * 0.01
16  cname    = "pressure"
17  cdesc    = "Model pressure"
18  cunits   = "hPa"
19 
20  END SUBROUTINE calc_pressure
21
22END MODULE module_calc_pressure
Note: See TracBrowser for help on using the repository browser.