Changeset 1707 for LMDZ5/branches/testing/libf/dyn3dpar/conf_gcm.F
- Timestamp:
- Jan 11, 2013, 10:19:19 AM (12 years ago)
- Location:
- LMDZ5/branches/testing
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ5/branches/testing
- Property svn:mergeinfo changed
/LMDZ5/trunk merged: 1670-1692,1694-1703,1705-1706
- Property svn:mergeinfo changed
-
LMDZ5/branches/testing/libf/dyn3dpar/conf_gcm.F
r1665 r1707 6 6 SUBROUTINE conf_gcm( tapedef, etatinit, clesphy0 ) 7 7 c 8 USE control_mod 8 9 #ifdef CPP_IOIPSL 9 10 use IOIPSL … … 16 17 use mod_hallo, ONLY : use_mpi_alloc 17 18 use parallel, ONLY : omp_chunk 18 USE control_mod19 19 USE infotrac, ONLY : type_trac 20 use assert_m, only: assert 21 20 22 IMPLICIT NONE 21 23 c----------------------------------------------------------------------- … … 43 45 #include "serre.h" 44 46 #include "comdissnew.h" 45 !#include "clesphys.h"46 #include "iniprint.h"47 47 #include "temps.h" 48 48 #include "comconst.h" 49 49 50 50 ! FH 2008/05/09 On elimine toutes les clefs physiques dans la dynamique 51 ! #include "clesphys.h" 52 #include "iniprint.h" 51 53 c 52 54 c … … 105 107 OPEN(UNIT=lunout,FILE='lmdz.out_0000',ACTION='write', 106 108 & STATUS='unknown',FORM='formatted') 107 108 109 ENDIF 109 110 … … 185 186 186 187 !Config Key = nsplit_phys 187 !Config Desc = nombre d'iteration de la physique188 !Config Def = 240189 !Config Help = nombre d'itration de la physique190 !191 188 nsplit_phys = 1 192 189 CALL getin('nsplit_phys',nsplit_phys) … … 325 322 CALL getin('tau_top_bound',tau_top_bound) 326 323 327 !328 324 !Config Key = coefdis 329 325 !Config Desc = coefficient pour gamdissip … … 608 604 type_trac = 'lmdz' 609 605 CALL getin('type_trac',type_trac) 610 611 606 612 607 !Config Key = config_inca … … 830 825 831 826 !Config Key = ok_dynzon 832 !Config Desc = calcul et sortie des transports827 !Config Desc = sortie des transports zonaux dans la dynamique 833 828 !Config Def = n 834 829 !Config Help = Permet de mettre en route le calcul des transports … … 865 860 write(lunout,*)"Le zoom en longitude est incompatible", 866 861 & " avec l'utilisation du filtre FFT ", 867 & "---> filtre FFT désactivé"862 & "---> FFT filter not active" 868 863 use_filtre_fft=.FALSE. 869 864 ENDIF … … 898 893 ok_strato=.FALSE. 899 894 CALL getin('ok_strato',ok_strato) 895 896 vert_prof_dissip = merge(1, 0, ok_strato .and. llm==39) 897 CALL getin('vert_prof_dissip', vert_prof_dissip) 898 call assert(vert_prof_dissip == 0 .or. vert_prof_dissip == 1, 899 $ "bad value for vert_prof_dissip") 900 900 901 901 !Config Key = ok_gradsfile … … 968 968 write(lunout,*)' type_trac = ', type_trac 969 969 write(lunout,*)' config_inca = ', config_inca 970 write(lunout,*)' ok_dynzon = ', ok_dynzon 970 write(lunout,*)' ok_dynzon = ', ok_dynzon 971 971 write(lunout,*)' ok_dyn_ins = ', ok_dyn_ins 972 972 write(lunout,*)' ok_dyn_ave = ', ok_dyn_ave
Note: See TracChangeset
for help on using the changeset viewer.