source: trunk/MESOSCALE_DEV/SRC/ARWpost/src/module_calc_tk.f90 @ 777

Last change on this file since 777 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: 432 bytes
Line 
1!! Diagnostics: Temperature (Kelvin)
2
3MODULE module_calc_tk
4
5  CONTAINS
6  SUBROUTINE calc_tk(SCR, cname, cdesc, cunits)
7
8  USE constants_module
9  USE module_model_basics
10
11  !Arguments
12  real, pointer, dimension(:,:,:)       :: SCR
13  character (len=128)                   :: cname, cdesc, cunits
14 
15
16  SCR      = TK
17  cname    = "tk"
18  cdesc    = "Temperature"
19  cunits   = "K"
20 
21  END SUBROUTINE calc_tk
22
23END MODULE module_calc_tk
Note: See TracBrowser for help on using the repository browser.