Changeset 2643
- Timestamp:
- Oct 2, 2016, 6:28:02 PM (8 years ago)
- Location:
- LMDZ5/trunk
- Files:
-
- 3 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/trunk/DefLists/iodef_dev.xml
r2002 r2643 1 1 <?xml version="1.0"?> 2 2 <simulation> 3 <context id="LMDZ" calendar_type="D360" start_date="1980-01-01 00:00:00"> 3 <context id="LMDZ"> 4 5 <!-- <calendar type="D360" start_date="1980-01-01 00:00:00" /> --> 6 4 7 <!-- Definition of model variables --> 5 8 <field_definition prec="4" … … 16 19 <!-- 3D variables --> 17 20 <field_group id="fields_3D" 18 domain_ref="dom_glo" >21 domain_ref="dom_glo" axis_ref="presnivs"> 19 22 <field id="temperature" 20 23 long_name="Atmospheric temperature" … … 39 42 name="Xhistins" 40 43 output_freq="12ts" 44 type="one_file" 41 45 enabled=".TRUE."> <!-- NB: output_freq in physics ts--> 42 46 … … 46 50 <field field_ref="ps" /> 47 51 </field_group> 48 <!-- <field_group field_group_ref="fields_2D"49 operation="instant" /> doesn't work ?!? -->50 52 51 53 <!-- VARS 3D --> … … 58 60 <field field_ref="v" /> 59 61 </field_group> 60 <!-- <field_group field_group_ref="fields_3D"61 operation="instant" /> doesn't work ?!? -->62 62 </file> 63 63 … … 65 65 name="Xdiurnalave" 66 66 output_freq="1d" 67 type="one_file" 67 68 enabled=".true."> 68 69 <!-- VARS 2D --> … … 93 94 wxios_add_vaxis --> 94 95 <axis_definition> 95 <!--96 <axis_group id="presnivs"97 standard_name="Pseudo-pressure of model vertical levels"98 unit="Pa">99 </axis_group>100 -->101 96 <axis id="presnivs" 102 97 standard_name="Pseudo-pressure of model vertical levels" … … 114 109 115 110 <variable_group id="parameters" > 116 <variable id="using_server" type="bool ean">true</variable>111 <variable id="using_server" type="bool">false</variable> 117 112 <variable id="info_level" type="int">10</variable> 118 113 </variable_group> -
LMDZ5/trunk/libf/dynphy_lonlat/phydev/callphysiq_mod.F90
r2422 r2643 12 12 jD_cur,jH_cur_split,zdt_split, & 13 13 zplev_omp,zplay_omp, & 14 zp hi_omp,zphis_omp,&14 zpk_omp,zphi_omp,zphis_omp, & 15 15 presnivs_omp, & 16 16 zufi_omp,zvfi_omp,zrfi_omp,ztfi_omp,zqfi_omp, & … … 34 34 REAL,INTENT(IN) :: zplev_omp(klon,llm+1) ! interlayer pressure (Pa) 35 35 REAL,INTENT(IN) :: zplay_omp(klon,llm) ! mid-layer pressure (Pa) 36 REAL,INTENT(IN) :: zpk_omp(klon,llm) ! Exner function 36 37 REAL,INTENT(IN) :: zphi_omp(klon,llm) ! geopotential at midlayer 37 38 REAL,INTENT(IN) :: zphis_omp(klon) ! surface geopotential -
LMDZ5/trunk/libf/phydev/physiq_mod.F90
r2422 r2643 25 25 #ifdef CPP_XIOS 26 26 USE xios, ONLY: xios_update_calendar 27 USE wxios, only: wxios_add_vaxis, wxios_set_ timestep, wxios_closedef, &28 27 USE wxios, only: wxios_add_vaxis, wxios_set_cal, wxios_closedef 28 USE iophy, ONLY: histwrite_phy 29 29 #endif 30 30 … … 129 129 !XIOS 130 130 ! Declare available vertical axes to be used in output files: 131 !CALL wxios_add_vaxis("presnivs", "dummy-not-used", klev, presnivs)132 131 CALL wxios_add_vaxis("presnivs", klev, presnivs) 133 132 134 ! Declare time step length (in s):135 CALL wxios_set_ timestep(dtime)136 133 ! Declare calendar and time step 134 CALL wxios_set_cal(dtime,"earth_360d",1,1,1,0.0,1,1,1,0.0) 135 137 136 !Finalize the context: 138 137 CALL wxios_closedef() 139 138 #endif 140 139 !$OMP END MASTER 140 !$OMP BARRIER 141 141 endif ! of if (debut) 142 142
Note: See TracChangeset
for help on using the changeset viewer.