Changeset 3322 for LMDZ6/branches/DYNAMICO-conv
- Timestamp:
- May 4, 2018, 3:33:28 PM (7 years ago)
- Location:
- LMDZ6/branches/DYNAMICO-conv/libf
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/branches/DYNAMICO-conv/libf/misc/wxios.F90
r3077 r3322 136 136 g_ctx_name = xios_ctx_name 137 137 138 ! Si couple alors init fait dans cpl_init139 IF (.not. PRESENT(type_ocean)) THEN140 CALL wxios_context_init()141 ENDIF138 ! ! Si couple alors init fait dans cpl_init 139 ! IF (.not. PRESENT(type_ocean)) THEN 140 ! CALL wxios_context_init() 141 ! ENDIF 142 142 143 143 END SUBROUTINE wxios_init … … 165 165 !$OMP END MASTER 166 166 END SUBROUTINE wxios_context_init 167 168 169 SUBROUTINE wxios_set_context() 170 IMPLICIT NONE 171 TYPE(xios_context) :: xios_ctx 172 173 !$OMP MASTER 174 CALL xios_get_handle(g_ctx_name, xios_ctx) !Récupération 175 CALL xios_set_current_context(xios_ctx) !Activation 176 !$OMP END MASTER 177 178 END SUBROUTINE wxios_set_context 167 179 168 180 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -
LMDZ6/branches/DYNAMICO-conv/libf/phylmd/iophy.F90
r3312 r3322 70 70 INTEGER :: data_ibegin, data_iend 71 71 72 !#ifdef CPP_XIOS73 !CALL wxios_context_init74 !#endif72 #ifdef CPP_XIOS 73 CALL wxios_context_init 74 #endif 75 75 76 76 -
LMDZ6/branches/DYNAMICO-conv/libf/phylmd/phyetat0.F90
r3065 r3322 518 518 ENDIF 519 519 520 CALL init_iophy_new(latitude_deg, longitude_deg)520 ! CALL init_iophy_new(latitude_deg, longitude_deg) 521 521 522 522 ! Initilialize module fonte_neige_mod -
LMDZ6/branches/DYNAMICO-conv/libf/phylmd/physiq_mod.F90
r3320 r3322 1201 1201 !IM 180608 1202 1202 1203 #ifdef CPP_XIOS1204 ! Get "missing_val" value from XML files (from temperature variable)1205 !$OMP MASTER1206 CALL xios_get_field_attr("temp",default_value=missing_val_omp)1207 !$OMP END MASTER1208 !$OMP BARRIER1209 missing_val=missing_val_omp1210 #endif1211 1203 1212 1204 itau_con=0 … … 1400 1392 ENDIF 1401 1393 ! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! 1394 CALL init_iophy_new(latitude_deg,longitude_deg) 1395 1402 1396 1403 1397 CALL phyetat0 ("startphy.nc",clesphy0,tabcntr0) … … 1612 1606 ! Initialisation des sorties 1613 1607 !============================================================= 1608 1609 #ifdef CPP_XIOS 1610 ! Get "missing_val" value from XML files (from temperature variable) 1611 !$OMP MASTER 1612 CALL xios_get_field_attr("temp",default_value=missing_val_omp) 1613 !$OMP END MASTER 1614 !$OMP BARRIER 1615 missing_val=missing_val_omp 1616 #endif 1614 1617 1615 1618 #ifdef CPP_XIOS
Note: See TracChangeset
for help on using the changeset viewer.