Changeset 1915 for trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F90
- Timestamp:
- Apr 4, 2018, 4:37:05 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F90
r1914 r1915 395 395 real,save,dimension(:,:,:), allocatable :: tpq ! Tracers for decoupled microphysical tests ( temporary in 01/18 ) 396 396 !$OMP THREADPRIVATE(tpq) 397 real,dimension(ngrid,nlayer,nq) :: dtpq ! (temporary in 01/18) 397 398 398 399 … … 1121 1122 pplay,pplev,zzlay,zzlev,dycchi) 1122 1123 endif ! if moyzon 1124 1123 1125 endif 1124 1126 … … 1497 1499 ! Send fields to XIOS: (NB these fields must also be defined as 1498 1500 ! <field id="..." /> in context_lmdz_physics.xml to be correctly used) 1499 CALL send_xios_field("ls",zls) 1501 CALL send_xios_field("ls",zls*180./pi) 1502 CALL send_xios_field("lss",zlss*180./pi) 1503 CALL send_xios_field("RA",right_ascen*180./pi) 1504 CALL send_xios_field("Declin",declin*180./pi) 1505 1506 ! Total energy balance diagnostics 1507 if (callrad.and.(.not.newtonian)) then 1508 CALL send_xios_field("ISR_TOA",fluxtop_dn) 1509 CALL send_xios_field("OLR_TOA",fluxtop_lw) 1510 endif 1511 1512 CALL send_xios_field("area",cell_area) 1513 CALL send_xios_field("pphi",pphi) 1500 1514 1501 1515 CALL send_xios_field("ps",ps) 1502 CALL send_xios_field("area",cell_area) 1503 1504 CALL send_xios_field("temperature",zt) 1516 CALL send_xios_field("tsurf",tsurf) 1517 1518 CALL send_xios_field("temp",zt) 1519 CALL send_xios_field("teta",zh) 1505 1520 CALL send_xios_field("u",zu) 1506 1521 CALL send_xios_field("v",zv) 1507 1522 CALL send_xios_field("w",pw) 1523 CALL send_xios_field("p",pplay) 1524 1525 ! Winds diagnostics. 1526 CALL send_xios_field("dudif",zdudif) 1527 CALL send_xios_field("dudyn",zdudyn) 1528 1529 ! Heating diagnostics. 1530 CALL send_xios_field("dtsw",zdtsw) 1531 CALL send_xios_field("dtlw",zdtlw) 1532 CALL send_xios_field("dtrad",dtrad) 1533 CALL send_xios_field("dtdyn",zdtdyn) 1534 1508 1535 if (lastcall.and.is_omp_master) then 1509 1536 write(*,*) "physiq: call xios_context_finalize"
Note: See TracChangeset
for help on using the changeset viewer.