Changeset 495 for trunk/LMDZ.COMMON
- Timestamp:
- Jan 10, 2012, 5:59:10 PM (13 years ago)
- Location:
- trunk/LMDZ.COMMON/libf
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d/conf_gcm.F
r492 r495 338 338 CALL getin('mode_top_bound',mode_top_bound) 339 339 CALL getin('tau_top_bound',tau_top_bound) 340 341 ! FOR TITAN: tidal forces 342 tidal=.TRUE. 343 CALL getin('tidal',tidal) 340 344 341 345 !Config Key = coefdis -
trunk/LMDZ.COMMON/libf/dyn3d/leapfrog.F
r492 r495 106 106 REAL dtetatop(ip1jmp1,llm) 107 107 REAL dqtop(ip1jmp1,llm,nqtot),dptop(ip1jmp1) 108 109 c TITAN : tendances due au forces de marees */s 110 REAL dvtidal(ip1jm,llm),dutidal(ip1jmp1,llm) 108 111 109 112 c tendances physiques */s … … 396 399 $ finvmaold ) 397 400 401 IF ((planet_type.eq.titan).and.(tidal)) then 402 c----------------------------------------------------------------------- 403 c Marées gravitationnelles causées par Saturne 404 c B. Charnay (28/10/2010) 405 c ---------------------------------------------------------- 406 CALL tidal_forces(rdaym_ini, dutidal, dvtidal) 407 ucov=ucov+dutidal*dt 408 vcov=vcov+dvtidal*dt 409 ENDIF 398 410 399 411 c .P.Le Van (26/04/94 ajout de finvpold dans l'appel d'integrd) -
trunk/LMDZ.COMMON/libf/dyn3d/logic.h
r127 r495 10 10 COMMON/logicl/ purmats,forward,leapf,apphys, & 11 11 & statcl,conser,apdiss,apdelq,saison,ecripar,fxyhypb,ysinus & 12 & ,read_start,ok_guide,ok_strato, ok_gradsfile&12 & ,read_start,ok_guide,ok_strato,tidal,ok_gradsfile & 13 13 & ,ok_limit,ok_etat0,grilles_gcm_netcdf,hybrid 14 14 … … 17 17 LOGICAL purmats,forward,leapf,apphys,statcl,conser, & 18 18 & apdiss,apdelq,saison,ecripar,fxyhypb,ysinus & 19 & ,read_start,ok_guide,ok_strato, ok_gradsfile&19 & ,read_start,ok_guide,ok_strato,tidal,ok_gradsfile & 20 20 & ,ok_limit,ok_etat0,grilles_gcm_netcdf 21 21 logical hybrid ! vertical coordinate is hybrid if true (sigma otherwise) -
trunk/LMDZ.COMMON/libf/dyn3dpar/conf_gcm.F
r492 r495 352 352 CALL getin('tau_top_bound',tau_top_bound) 353 353 354 ! 354 ! FOR TITAN: tidal forces 355 tidal=.TRUE. 356 CALL getin('tidal',tidal) 357 355 358 !Config Key = coefdis 356 359 !Config Desc = coefficient pour gamdissip -
trunk/LMDZ.COMMON/libf/dyn3dpar/leapfrog_p.F
r492 r495 117 117 REAL,SAVE :: dptop(ip1jmp1) 118 118 REAL,DIMENSION(:,:,:),ALLOCATABLE,SAVE :: dqtop 119 120 c TITAN : tendances due au forces de marees */s 121 REAL,SAVE :: dvtidal(ip1jm,llm),dutidal(ip1jmp1,llm) 119 122 120 123 c variables pour le fichier histoire … … 696 699 $ finvmaold ) 697 700 701 IF ((planet_type.eq.titan).and.(tidal)) then 702 c----------------------------------------------------------------------- 703 c Marées gravitationnelles causées par Saturne 704 c B. Charnay (28/10/2010) 705 c ---------------------------------------------------------- 706 CALL tidal_forces(rdaym_ini, dutidal, dvtidal) 707 ucov=ucov+dutidal*dt 708 vcov=vcov+dvtidal*dt 709 ENDIF 710 698 711 ! CALL FTRACE_REGION_END("integrd") 699 712 c$OMP BARRIER -
trunk/LMDZ.COMMON/libf/dyn3dpar/logic.h
r127 r495 10 10 COMMON/logicl/ purmats,forward,leapf,apphys, & 11 11 & statcl,conser,apdiss,apdelq,saison,ecripar,fxyhypb,ysinus & 12 & ,read_start,ok_guide,ok_strato, ok_gradsfile&12 & ,read_start,ok_guide,ok_strato,tidal,ok_gradsfile & 13 13 & ,ok_limit,ok_etat0,grilles_gcm_netcdf,hybrid 14 14 … … 17 17 LOGICAL purmats,forward,leapf,apphys,statcl,conser, & 18 18 & apdiss,apdelq,saison,ecripar,fxyhypb,ysinus & 19 & ,read_start,ok_guide,ok_strato, ok_gradsfile&19 & ,read_start,ok_guide,ok_strato,tidal,ok_gradsfile & 20 20 & ,ok_limit,ok_etat0,grilles_gcm_netcdf 21 21 logical hybrid ! vertical coordinate is hybrid if true (sigma otherwise)
Note: See TracChangeset
for help on using the changeset viewer.