Changeset 3814 for dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/iophy.F90
- Timestamp:
- Apr 15, 2015, 6:49:07 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
dynamico_lmdz/aquaplanet/LMDZ5/libf/phylmd/iophy.F90
r3809 r3814 451 451 use phys_output_var_mod, only: type_ecri, zoutm, zdtime_moy, lev_files, & 452 452 nid_files, nhorim, swaero_diag, nfiles 453 USE temps_phy_mod 453 454 IMPLICIT NONE 454 455 455 INCLUDE "dimensions.h" 456 INCLUDE "temps.h"457 456 INCLUDE "clesphys.h" 458 457 … … 507 506 nhorim, zdtime_moy, levmin, levmax, & 508 507 nvertm, nfiles 508 USE temps_phy_mod 509 509 IMPLICIT NONE 510 510 511 511 INCLUDE "dimensions.h" 512 INCLUDE "temps.h"513 512 ! INCLUDE "indicesol.h" 514 513 INCLUDE "clesphys.h" … … 566 565 use wxios, only: wxios_add_field_to_file 567 566 #endif 567 USE temps_phy_mod 568 568 IMPLICIT NONE 569 569 570 570 INCLUDE "dimensions.h" 571 INCLUDE "temps.h"572 571 INCLUDE "clesphys.h" 573 572 INCLUDE "iniprint.h" … … 653 652 use wxios, only: wxios_add_field_to_file 654 653 #endif 654 USE temps_phy_mod 655 655 IMPLICIT NONE 656 656 657 657 INCLUDE "dimensions.h" 658 INCLUDE "temps.h"659 658 INCLUDE "clesphys.h" 660 659 INCLUDE "iniprint.h" … … 767 766 768 767 769 IF (size(field)/=klon) CALL abort_ gcm('iophy::histwrite2d','Field first DIMENSION not equal to klon',1)768 IF (size(field)/=klon) CALL abort_physic('iophy::histwrite2d','Field first DIMENSION not equal to klon',1) 770 769 771 770 CALL Gather_omp(field,buffer_omp) … … 831 830 832 831 833 IF (size(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first DIMENSION not equal to klon',1)832 IF (size(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first DIMENSION not equal to klon',1) 834 833 nlev=size(field,2) 835 834 … … 945 944 946 945 !Et sinon on.... écrit 947 IF (SIZE(field)/=klon) CALL abort_ gcm('iophy::histwrite2d_phy','Field first DIMENSION not equal to klon',1)946 IF (SIZE(field)/=klon) CALL abort_physic('iophy::histwrite2d_phy','Field first DIMENSION not equal to klon',1) 948 947 949 948 if (prt_level >= 10) then … … 971 970 endif 972 971 #else 973 CALL abort_ gcm('iophy','cannot have ok_all_xml = .T. without CPP_XIOS defined' ,1)972 CALL abort_physic ('iophy','cannot have ok_all_xml = .T. without CPP_XIOS defined' ,1) 974 973 #endif 975 974 ELSE … … 1095 1094 ELSE 1096 1095 !Et sinon on.... écrit 1097 IF (SIZE(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first DIMENSION not equal to klon',1)1096 IF (SIZE(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first DIMENSION not equal to klon',1) 1098 1097 nlev=SIZE(field,2) 1099 1098 if (nlev.eq.klev+1) then … … 1119 1118 CALL xios_send_field(var%name, Field3d(:,:,1:nlevx)) 1120 1119 #else 1121 CALL abort_ gcm('iophy','cannot have ok_all_xml = .T. without CPP_XIOS defined' ,1)1120 CALL abort_physic ('iophy','cannot have ok_all_xml = .T. without CPP_XIOS defined' ,1) 1122 1121 #endif 1123 1122 ELSE … … 1216 1215 1217 1216 !Et sinon on.... écrit 1218 IF (SIZE(field)/=klon) CALL abort_ gcm('iophy::histwrite2d_xios','Field first DIMENSION not equal to klon',1)1217 IF (SIZE(field)/=klon) CALL abort_physic('iophy::histwrite2d_xios','Field first DIMENSION not equal to klon',1) 1219 1218 1220 1219 CALL Gather_omp(field,buffer_omp) … … 1286 1285 1287 1286 !Et on.... écrit 1288 IF (SIZE(field,1)/=klon) CALL abort_ gcm('iophy::histwrite3d','Field first DIMENSION not equal to klon',1)1287 IF (SIZE(field,1)/=klon) CALL abort_physic('iophy::histwrite3d','Field first DIMENSION not equal to klon',1) 1289 1288 nlev=SIZE(field,2) 1290 1289
Note: See TracChangeset
for help on using the changeset viewer.