Changeset 1422 for trunk/LMDZ.COMMON/libf/dyn3d_common
- Timestamp:
- Apr 30, 2015, 12:33:45 PM (10 years ago)
- Location:
- trunk/LMDZ.COMMON/libf/dyn3d_common
- Files:
-
- 4 added
- 54 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.COMMON/libf/dyn3d_common/adaptdt.F
r1300 r1422 6 6 7 7 USE control_mod 8 USE comconst_mod, ONLY: dtvr 8 9 IMPLICIT NONE 9 10 … … 11 12 c#include "paramr2.h" 12 13 #include "paramet.h" 13 #include "comconst.h"14 14 #include "comdissip.h" 15 #include "comvert.h"16 15 #include "comgeom2.h" 17 #include "logic.h"18 #include "temps.h"19 #include "ener.h"20 #include "description.h"21 16 22 17 c---------------------------------------------------------- -
trunk/LMDZ.COMMON/libf/dyn3d_common/advn.F
r1300 r1422 19 19 #include "dimensions.h" 20 20 #include "paramet.h" 21 #include "logic.h"22 #include "comvert.h"23 #include "comconst.h"24 21 #include "comgeom.h" 25 22 #include "iniprint.h" … … 486 483 #include "dimensions.h" 487 484 #include "paramet.h" 488 #include "logic.h"489 #include "comvert.h"490 #include "comconst.h"491 485 #include "iniprint.h" 492 486 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/advx.F
r1300 r1422 25 25 #include "dimensions.h" 26 26 #include "paramet.h" 27 #include "comconst.h"28 #include "comvert.h"29 27 30 28 C Arguments : -
trunk/LMDZ.COMMON/libf/dyn3d_common/advxp.F
r1300 r1422 15 15 #include "dimensions.h" 16 16 #include "paramet.h" 17 #include "comconst.h"18 #include "comvert.h"19 17 20 18 INTEGER ntra -
trunk/LMDZ.COMMON/libf/dyn3d_common/advy.F
r1300 r1422 28 28 #include "dimensions.h" 29 29 #include "paramet.h" 30 #include "comconst.h"31 #include "comvert.h"32 30 #include "comgeom2.h" 33 31 -
trunk/LMDZ.COMMON/libf/dyn3d_common/advyp.F
r1300 r1422 30 30 #include "dimensions.h" 31 31 #include "paramet.h" 32 #include "comconst.h"33 #include "comvert.h"34 32 #include "comgeom.h" 35 33 -
trunk/LMDZ.COMMON/libf/dyn3d_common/advz.F
r1300 r1422 23 23 #include "dimensions.h" 24 24 #include "paramet.h" 25 #include "comconst.h"26 #include "comvert.h"27 25 28 26 C #include "traceur.h" -
trunk/LMDZ.COMMON/libf/dyn3d_common/advzp.F
r1300 r1422 33 33 #include "dimensions.h" 34 34 #include "paramet.h" 35 #include "comconst.h"36 #include "comvert.h"37 35 #include "comgeom.h" 38 36 C -
trunk/LMDZ.COMMON/libf/dyn3d_common/bernoui.F
r1300 r1422 27 27 #include "dimensions.h" 28 28 #include "paramet.h" 29 #include "logic.h"30 29 c 31 30 c Arguments: -
trunk/LMDZ.COMMON/libf/dyn3d_common/conf_planete.F90
r1300 r1422 10 10 USE ioipsl_getincom 11 11 #endif 12 USE comvert_mod, ONLY: preff,pa 13 USE comconst_mod, ONLY: daysec,daylen,kappa,cpp,omeg,rad,g,ihf,pi,molmass 12 14 IMPLICIT NONE 13 15 ! … … 16 18 ! -------------- 17 19 #include "dimensions.h" 18 #include "comconst.h"19 #include "comvert.h"20 20 ! 21 21 ! local: -
trunk/LMDZ.COMMON/libf/dyn3d_common/convmas.F
r1300 r1422 34 34 #include "dimensions.h" 35 35 #include "paramet.h" 36 #include "comvert.h"37 #include "logic.h"38 36 39 37 REAL pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm ),convm( ip1jmp1,llm ) -
trunk/LMDZ.COMMON/libf/dyn3d_common/coordij.F
r1300 r1422 10 10 c 11 11 c======================================================================= 12 USE comconst_mod, ONLY: pi 12 13 13 14 IMPLICIT NONE … … 18 19 #include "dimensions.h" 19 20 #include "paramet.h" 20 #include "comconst.h"21 21 #include "comgeom.h" 22 #include "serre.h"23 22 24 23 real zlon,zlat -
trunk/LMDZ.COMMON/libf/dyn3d_common/cpdet_mod.F90
r1315 r1422 22 22 23 23 USE control_mod, ONLY: planet_type 24 USE comconst_mod, ONLY: nu_venus,t0_venus 24 25 IMPLICIT none 25 26 !====================================================================== 26 27 ! Initialization of nu_venus and t0_venus 27 28 !====================================================================== 28 29 ! for cpp, nu_venus and t0_venus:30 #include "comconst.h"31 29 32 30 if (planet_type.eq."venus") then … … 47 45 48 46 USE control_mod, ONLY: planet_type 47 USE comconst_mod, ONLY: cpp,t0_venus,nu_venus 49 48 IMPLICIT none 50 49 51 50 ! for cpp, nu_venus and t0_venus: 52 #include "comconst.h"53 51 54 52 real,intent(in) :: t … … 78 76 79 77 USE control_mod, ONLY: planet_type 78 USE comconst_mod, ONLY: cpp,t0_venus,nu_venus 79 80 80 IMPLICIT NONE 81 82 ! for cpp, nu_venus and t0_venus:83 #include "comconst.h"84 81 85 82 integer,intent(in) :: npoints … … 112 109 113 110 USE control_mod, ONLY: planet_type 111 USE comconst_mod, ONLY: cpp,nu_venus,t0_venus 112 114 113 IMPLICIT NONE 115 116 ! for cpp, nu_venus and t0_venus:117 #include "comconst.h"118 114 119 115 integer,intent(in) :: npoints … … 143 139 USE control_mod, only : planet_type 144 140 USE parallel_lmdz, only : OMP_CHUNK 145 IMPLICIT none 146 147 ! for cpp, nu_venus and t0_venus: 148 #include "comconst.h" 141 USE comconst_mod, ONLY: cpp,nu_venus,t0_venus 142 143 IMPLICIT none 149 144 150 145 integer,intent(in) :: nlon,nlev … … 182 177 USE parallel_lmdz, only : jj_begin,jj_end,OMP_CHUNK 183 178 USE control_mod, only : planet_type 179 USE comconst_mod, ONLY: cpp,nu_venus,t0_venus 180 184 181 IMPLICIT none 185 182 ! for iip1, jjp1 and llm 186 183 #include "dimensions.h" 187 184 #include "paramet.h" 188 ! for cpp, nu_venus and t0_venus:189 #include "comconst.h"190 185 191 186 real,intent(in) :: yt(iip1,jjp1,llm) … … 225 220 USE control_mod, only : planet_type 226 221 USE parallel_lmdz, only : OMP_CHUNK 227 IMPLICIT none228 ! for cpp, nu_venus and t0_venus: 229 #include "comconst.h" 222 USE comconst_mod, ONLY: cpp,nu_venus,t0_venus 223 224 IMPLICIT none 230 225 231 226 integer,intent(in) :: nlon,nlev … … 263 258 USE parallel_lmdz, only : jj_begin,jj_end,OMP_CHUNK 264 259 USE control_mod, only : planet_type 260 USE comconst_mod, ONLY: cpp,nu_venus,t0_venus 261 265 262 IMPLICIT none 266 263 ! for iip1, jjp1 and llm 267 264 #include "dimensions.h" 268 265 #include "paramet.h" 269 ! for cpp, nu_venus and t0_venus:270 #include "comconst.h"271 266 272 267 real,intent(out) :: yt(iip1,jjp1,llm) -
trunk/LMDZ.COMMON/libf/dyn3d_common/defrun.F
r1300 r1422 13 13 14 14 USE control_mod 15 USE logic_mod, ONLY: purmats,iflag_phys,fxyhypb,ysinus 16 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, 17 . alphax,alphay,taux,tauy 15 18 16 19 IMPLICIT NONE … … 36 39 #include "dimensions.h" 37 40 #include "paramet.h" 38 #include "logic.h"39 #include "serre.h"40 41 #include "comdissnew.h" 41 42 #include "clesph0.h" -
trunk/LMDZ.COMMON/libf/dyn3d_common/disvert.F90
r1391 r1422 12 12 use new_unit_m, only: new_unit 13 13 use assert_m, only: assert 14 USE comvert_mod, ONLY: ap,bp,nivsigs,nivsig,preff,pa,presnivs,dpres,scaleheight 15 USE logic_mod, ONLY: ok_strato 14 16 15 17 IMPLICIT NONE … … 17 19 include "dimensions.h" 18 20 include "paramet.h" 19 include "comvert.h"20 include "comconst.h"21 21 include "iniprint.h" 22 include "logic.h"23 22 24 23 !------------------------------------------------------------------------------- -
trunk/LMDZ.COMMON/libf/dyn3d_common/disvert_noterre.F
r1300 r1422 12 12 use ioipsl_getincom 13 13 #endif 14 USE comvert_mod, ONLY: ap,bp,aps,bps,presnivs,pseudoalt, 15 . nivsig,nivsigs,pa,preff,scaleheight 16 USE comconst_mod, ONLY: kappa 17 USE logic_mod, ONLY: hybrid 14 18 15 19 IMPLICIT NONE … … 17 21 #include "dimensions.h" 18 22 #include "paramet.h" 19 #include "comvert.h"20 #include "comconst.h"21 #include "logic.h"22 23 #include "iniprint.h" 23 24 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/divgrad.F
r1300 r1422 24 24 #include "comgeom.h" 25 25 #include "comdissipn.h" 26 #include "logic.h"27 26 c 28 27 INTEGER klevel -
trunk/LMDZ.COMMON/libf/dyn3d_common/dynetat0.F
r1300 r1422 11 11 12 12 use control_mod, only : planet_type, timestart 13 USE comvert_mod, ONLY: pa,preff 14 USE comconst_mod, ONLY: im,jm,lllm,daysec,dtvr, 15 . rad,omeg,g,cpp,kappa,pi 16 USE logic_mod, ONLY: fxyhypb,ysinus 17 USE serre_mod, ONLY: clon,clat,grossismx,grossismy 18 USE temps_mod, ONLY: annee_ref,day_ref,itau_dyn, 19 . start_time,day_ini,hour_ini 20 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 13 21 14 22 IMPLICIT NONE … … 31 39 #include "dimensions.h" 32 40 #include "paramet.h" 33 #include "temps.h"34 #include "comconst.h"35 #include "comvert.h"36 41 #include "comgeom2.h" 37 #include "ener.h"38 42 #include "netcdf.inc" 39 #include "description.h"40 #include "serre.h"41 #include "logic.h"42 43 #include "iniprint.h" 43 44 -
trunk/LMDZ.COMMON/libf/dyn3d_common/dynredem.F
r1300 r1422 10 10 use netcdf95, only: NF95_PUT_VAR 11 11 use control_mod, only : planet_type 12 USE comvert_mod, ONLY: ap,bp,aps,bps,presnivs,pseudoalt,pa,preff, 13 . nivsig,nivsigs 14 USE comconst_mod, ONLY: daysec,dtvr,rad,omeg,g,cpp,kappa,pi 15 USE logic_mod, ONLY: fxyhypb,ysinus 16 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, 17 . taux,tauy 18 USE temps_mod, ONLY: annee_ref,day_ref,itau_dyn,itaufin, 19 . start_time,hour_ini 20 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 12 21 13 22 IMPLICIT NONE … … 19 28 #include "dimensions.h" 20 29 #include "paramet.h" 21 #include "comconst.h"22 #include "comvert.h"23 30 #include "comgeom2.h" 24 #include "temps.h"25 #include "ener.h"26 #include "logic.h"27 31 #include "netcdf.inc" 28 #include "description.h"29 #include "serre.h"30 32 #include "iniprint.h" 31 33 … … 588 590 use netcdf, only: NF90_get_VAR 589 591 use netcdf95, only: NF95_PUT_VAR 592 USE temps_mod, ONLY: itaufin,itau_dyn 590 593 591 594 IMPLICIT NONE … … 595 598 #include "dimensions.h" 596 599 #include "paramet.h" 597 #include "description.h"598 600 #include "netcdf.inc" 599 #include "comvert.h"600 601 #include "comgeom.h" 601 #include "temps.h"602 602 #include "iniprint.h" 603 603 -
trunk/LMDZ.COMMON/libf/dyn3d_common/exner_hyb_m.F90
r1302 r1422 1 1 module exner_hyb_m 2 3 USE comvert_mod, ONLY: preff 4 USE comconst_mod, ONLY: jmp1,kappa,cpp,r,pi 2 5 3 6 IMPLICIT NONE … … 35 38 include "dimensions.h" 36 39 include "paramet.h" 37 include "comconst.h"38 40 include "comgeom.h" 39 include "comvert.h"40 include "serre.h"41 41 42 42 INTEGER ngrid -
trunk/LMDZ.COMMON/libf/dyn3d_common/exner_milieu_m.F90
r1302 r1422 1 1 module exner_milieu_m 2 3 USE comvert_mod, ONLY: preff 4 USE comconst_mod, ONLY: jmp1,kappa,cpp,r 2 5 3 6 IMPLICIT NONE … … 32 35 include "dimensions.h" 33 36 include "paramet.h" 34 include "comconst.h"35 37 include "comgeom.h" 36 include "comvert.h"37 include "serre.h"38 38 39 39 INTEGER ngrid -
trunk/LMDZ.COMMON/libf/dyn3d_common/fxy.F
r1300 r1422 5 5 , rlatu2,yprimu2, 6 6 , rlonu,xprimu,rlonv,xprimv,rlonm025,xprimm025,rlonp025,xprimp025) 7 8 USE comconst_mod, ONLY: pi 9 USE serre_mod, ONLY: pxo,pyo,alphax,alphay,transx,transy 7 10 8 11 IMPLICIT NONE … … 16 19 #include "dimensions.h" 17 20 #include "paramet.h" 18 #include "serre.h"19 #include "comconst.h"20 21 21 22 INTEGER i,j -
trunk/LMDZ.COMMON/libf/dyn3d_common/fxysinus.F
r1300 r1422 6 6 , rlonu,xprimu,rlonv,xprimv,rlonm025,xprimm025,rlonp025,xprimp025) 7 7 8 USE comconst_mod, ONLY: pi 8 9 9 10 IMPLICIT NONE … … 17 18 #include "dimensions.h" 18 19 #include "paramet.h" 19 #include "comconst.h"20 20 21 21 INTEGER i,j -
trunk/LMDZ.COMMON/libf/dyn3d_common/geopot.F
r1300 r1422 29 29 #include "dimensions.h" 30 30 #include "paramet.h" 31 #include "comvert.h"32 31 33 32 c Arguments: -
trunk/LMDZ.COMMON/libf/dyn3d_common/gradiv.F
r1300 r1422 22 22 #include "paramet.h" 23 23 #include "comdissipn.h" 24 #include "logic.h"25 24 26 25 INTEGER klevel -
trunk/LMDZ.COMMON/libf/dyn3d_common/grilles_gcm_netcdf_sub.F90
r1300 r1422 9 9 SUBROUTINE grilles_gcm_netcdf_sub(masque,phis) 10 10 11 USE comvert_mod, ONLY: pa,preff,presnivs 12 USE comconst_mod, ONLY: daysec,rad,omeg,g,kappa,cpp,pi 13 11 14 IMPLICIT NONE 12 15 13 16 INCLUDE "dimensions.h" 14 17 INCLUDE "paramet.h" 15 INCLUDE "comconst.h"16 18 INCLUDE "comgeom.h" 17 INCLUDE "comvert.h"18 19 INCLUDE "netcdf.inc" 19 INCLUDE "serre.h"20 20 21 21 -
trunk/LMDZ.COMMON/libf/dyn3d_common/iniacademic.F90
r1391 r1422 16 16 use exner_hyb_m, only: exner_hyb 17 17 use exner_milieu_m, only: exner_milieu 18 USE comvert_mod, ONLY: ap,bp,preff,presnivs,pressure_exner 19 USE comconst_mod, ONLY: im,jm,daysec,dtvr,kappa,cpp,g,pi 20 USE logic_mod, ONLY: iflag_phys,read_start 21 USE temps_mod, ONLY: annee_ref,day_ref,day_ini 22 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 18 23 19 24 ! Author: Frederic Hourdin original: 15/01/93 … … 28 33 include "dimensions.h" 29 34 include "paramet.h" 30 include "comvert.h"31 include "comconst.h"32 35 include "comgeom.h" 33 36 include "academic.h" 34 include "ener.h"35 include "temps.h"36 37 include "iniprint.h" 37 include "logic.h"38 38 39 39 ! Arguments: -
trunk/LMDZ.COMMON/libf/dyn3d_common/iniconst.F90
r1302 r1422 11 11 use ioipsl_getincom 12 12 #endif 13 USE comvert_mod, ONLY: disvert_type,pressure_exner 14 USE comconst_mod, ONLY: im,jm,lllm,imp1,jmp1,lllmm1,lllmp1, & 15 dtphys,dtvr,unsim,r,cpp,kappa,pi 13 16 14 17 IMPLICIT NONE … … 21 24 include "dimensions.h" 22 25 include "paramet.h" 23 include "comconst.h"24 include "temps.h"25 include "comvert.h"26 26 include "iniprint.h" 27 27 -
trunk/LMDZ.COMMON/libf/dyn3d_common/inidissip.F90
r1300 r1422 25 25 26 26 USE control_mod, only : dissip_period,iperiod,planet_type 27 USE comvert_mod, ONLY: preff,presnivs,scaleheight,pseudoalt 28 USE comconst_mod, ONLY: dtvr,dtdiss,rad,pi,dissip_zref,dissip_deltaz, & 29 dissip_factz,dissip_fac_mid,dissip_fac_up,dissip_pupstart, & 30 dissip_hdelta 31 USE logic_mod, ONLY: ok_strato 27 32 28 33 IMPLICIT NONE … … 30 35 include "paramet.h" 31 36 include "comdissipn.h" 32 include "comconst.h"33 include "comvert.h"34 include "logic.h"35 37 include "iniprint.h" 36 38 -
trunk/LMDZ.COMMON/libf/dyn3d_common/inigeom.F
r1300 r1422 16 16 c 17 17 c 18 USE comconst_mod, ONLY: rad,g,omeg,pi 19 USE logic_mod, ONLY: fxyhypb,ysinus 20 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, 21 . alphax,alphay,taux,tauy,transx,transy,pxo,pyo 22 18 23 IMPLICIT NONE 19 24 c 20 25 #include "dimensions.h" 21 26 #include "paramet.h" 22 #include "comconst.h"23 27 #include "comgeom2.h" 24 #include "serre.h"25 #include "logic.h"26 28 #include "comdissnew.h" 27 29 -
trunk/LMDZ.COMMON/libf/dyn3d_common/initdynav.F90
r1403 r1422 9 9 use com_io_dyn_mod, only : histaveid,histvaveid,histuaveid, & 10 10 dynhistave_file,dynhistvave_file,dynhistuave_file 11 USE comvert_mod, ONLY: presnivs 12 USE comconst_mod, ONLY: pi 13 USE temps_mod, ONLY: itau_dyn 11 14 implicit none 12 15 … … 34 37 include "dimensions.h" 35 38 include "paramet.h" 36 include "comconst.h"37 include "comvert.h"38 39 include "comgeom.h" 39 include "temps.h"40 include "ener.h"41 include "logic.h"42 include "description.h"43 include "serre.h"44 40 include "iniprint.h" 45 41 -
trunk/LMDZ.COMMON/libf/dyn3d_common/initfluxsto.F
r1403 r1422 9 9 USE IOIPSL 10 10 #endif 11 USE comvert_mod, ONLY: nivsigs 12 USE comconst_mod, ONLY: pi 13 USE temps_mod, ONLY: annee_ref,day_ref,itau_dyn 11 14 implicit none 12 15 … … 40 43 #include "dimensions.h" 41 44 #include "paramet.h" 42 #include "comconst.h"43 #include "comvert.h"44 45 #include "comgeom.h" 45 #include "temps.h"46 #include "ener.h"47 #include "logic.h"48 #include "description.h"49 #include "serre.h"50 46 #include "iniprint.h" 51 47 -
trunk/LMDZ.COMMON/libf/dyn3d_common/inithist.F
r1403 r1422 10 10 use com_io_dyn_mod, only : histid,histvid,histuid, & 11 11 & dynhist_file,dynhistv_file,dynhistu_file 12 USE comvert_mod, ONLY: presnivs 13 USE comconst_mod, ONLY: pi 14 USE temps_mod, ONLY: itau_dyn 12 15 13 16 implicit none … … 40 43 #include "dimensions.h" 41 44 #include "paramet.h" 42 #include "comconst.h"43 #include "comvert.h"44 45 #include "comgeom.h" 45 #include "temps.h"46 #include "ener.h"47 #include "logic.h"48 #include "description.h"49 #include "serre.h"50 46 #include "iniprint.h" 51 47 -
trunk/LMDZ.COMMON/libf/dyn3d_common/inter_barxy_m.F90
r1300 r1422 374 374 375 375 use assert_eq_m, only: assert_eq 376 USE comconst_mod, ONLY: pi 376 377 377 378 IMPLICIT NONE 378 379 379 include "comconst.h"380 380 ! (for "pi") 381 381 … … 431 431 ! order. 432 432 433 USE comconst_mod, ONLY: pi 434 433 435 IMPLICIT NONE 434 436 435 include "comconst.h"436 437 ! (for "pi") 437 438 -
trunk/LMDZ.COMMON/libf/dyn3d_common/interpost.F
r1300 r1422 9 9 #include "dimensions.h" 10 10 #include "paramet.h" 11 #include "comconst.h"12 #include "comvert.h"13 11 #include "comgeom2.h" 14 12 -
trunk/LMDZ.COMMON/libf/dyn3d_common/interpre.F
r1391 r1422 7 7 8 8 USE control_mod 9 USE comvert_mod, ONLY: ap,bp 10 USE comconst_mod, ONLY: g 9 11 10 12 implicit none … … 13 15 c#include "paramr2.h" 14 16 #include "paramet.h" 15 #include "comconst.h"16 17 #include "comdissip.h" 17 #include "comvert.h"18 18 #include "comgeom2.h" 19 #include "logic.h"20 #include "temps.h"21 #include "ener.h"22 #include "description.h"23 19 24 20 c--------------------------------------------------- -
trunk/LMDZ.COMMON/libf/dyn3d_common/limx.F
r1300 r1422 17 17 #include "dimensions.h" 18 18 #include "paramet.h" 19 #include "logic.h"20 #include "comvert.h"21 #include "comconst.h"22 19 #include "comgeom.h" 23 20 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/limy.F
r1300 r1422 14 14 c 15 15 c -------------------------------------------------------------------- 16 USE comconst_mod, ONLY: pi 17 16 18 IMPLICIT NONE 17 19 c 18 20 #include "dimensions.h" 19 21 #include "paramet.h" 20 #include "logic.h"21 #include "comvert.h"22 #include "comconst.h"23 22 #include "comgeom.h" 24 23 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/limz.F
r1300 r1422 17 17 #include "dimensions.h" 18 18 #include "paramet.h" 19 #include "logic.h"20 #include "comvert.h"21 #include "comconst.h"22 19 #include "comgeom.h" 23 20 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/massbar.F
r1391 r1422 20 20 #include "dimensions.h" 21 21 #include "paramet.h" 22 #include "comconst.h"23 22 #include "comgeom.h" 24 23 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/massbarxy.F
r1391 r1422 20 20 #include "dimensions.h" 21 21 #include "paramet.h" 22 #include "comconst.h"23 22 #include "comgeom.h" 24 23 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/massdair.F
r1300 r1422 20 20 #include "dimensions.h" 21 21 #include "paramet.h" 22 #include "comconst.h"23 22 #include "comgeom.h" 24 23 c -
trunk/LMDZ.COMMON/libf/dyn3d_common/nxgrarot.F
r1300 r1422 22 22 #include "paramet.h" 23 23 #include "comdissipn.h" 24 #include "logic.h"25 24 c 26 25 INTEGER klevel -
trunk/LMDZ.COMMON/libf/dyn3d_common/pentes_ini.F
r1300 r1422 3 3 ! 4 4 SUBROUTINE pentes_ini (q,w,masse,pbaru,pbarv,mode) 5 6 USE comconst_mod, ONLY: dtvr,pi 7 5 8 IMPLICIT NONE 6 9 … … 24 27 #include "dimensions.h" 25 28 #include "paramet.h" 26 #include "comconst.h"27 #include "comvert.h"28 29 #include "comgeom2.h" 29 30 -
trunk/LMDZ.COMMON/libf/dyn3d_common/prather.F
r1300 r1422 3 3 ! 4 4 SUBROUTINE prather (q,w,masse,pbaru,pbarv,nt,dt) 5 6 USE comconst_mod, ONLY: pi 7 5 8 IMPLICIT NONE 6 9 … … 21 24 #include "dimensions.h" 22 25 #include "paramet.h" 23 #include "comconst.h"24 #include "comvert.h"25 26 #include "comgeom2.h" 26 27 -
trunk/LMDZ.COMMON/libf/dyn3d_common/sortvarc.F
r1391 r1422 7 7 8 8 USE control_mod, ONLY: resetvarc 9 USE comconst_mod, ONLY: daysec,dtvr,rad,g,omeg 10 USE logic_mod, ONLY: read_start 11 USE ener_mod, ONLY: etot,ptot,ztot,stot,ang, 12 . etot0,ptot0,ztot0,stot0,ang0, 13 . rmsdpdt,rmsv 9 14 IMPLICIT NONE 10 15 … … 27 32 INCLUDE "dimensions.h" 28 33 INCLUDE "paramet.h" 29 INCLUDE "comconst.h"30 INCLUDE "comvert.h"31 34 INCLUDE "comgeom.h" 32 INCLUDE "ener.h"33 INCLUDE "logic.h"34 INCLUDE "temps.h"35 35 INCLUDE "iniprint.h" 36 36 -
trunk/LMDZ.COMMON/libf/dyn3d_common/sortvarc0.F
r1300 r1422 5 5 $(itau,ucov,teta,ps,masse,pk,phis,vorpot,phi,bern,dp,time , 6 6 $ vcov) 7 8 USE comconst_mod, ONLY: daysec,dtvr,rad,g,omeg 9 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0,rmsv,rmsdpdt 10 7 11 IMPLICIT NONE 8 12 … … 24 28 #include "dimensions.h" 25 29 #include "paramet.h" 26 #include "comconst.h"27 #include "comvert.h"28 30 #include "comgeom.h" 29 #include "ener.h"30 #include "logic.h"31 #include "temps.h"32 31 33 32 c Arguments: -
trunk/LMDZ.COMMON/libf/dyn3d_common/tidal_forces.F
r1300 r1422 24 24 #include "dimensions.h" 25 25 #include "paramet.h" 26 #include "logic.h"27 #include "comvert.h"28 #include "comconst.h"29 26 #include "comgeom.h" 30 27 !#include "comorbit.h" -
trunk/LMDZ.COMMON/libf/dyn3d_common/tourpot.F
r1300 r1422 25 25 #include "paramet.h" 26 26 #include "comgeom.h" 27 #include "logic.h"28 27 29 28 REAL rot( ip1jm,llm ) -
trunk/LMDZ.COMMON/libf/dyn3d_common/traceurpole.F
r1300 r1422 11 11 c#include "paramr2.h" 12 12 #include "paramet.h" 13 #include "comconst.h"14 13 #include "comdissip.h" 15 #include "comvert.h"16 14 #include "comgeom2.h" 17 #include "logic.h"18 #include "temps.h"19 #include "ener.h"20 #include "description.h"21 15 22 16 -
trunk/LMDZ.COMMON/libf/dyn3d_common/ugeostr.F90
r1415 r1422 11 11 ! levels are pressure levels. 12 12 13 USE comconst_mod, ONLY: omeg,rad 14 13 15 implicit none 14 16 15 17 include "dimensions.h" 16 18 include "paramet.h" 17 include "comconst.h"18 19 include "comgeom2.h" 19 20 -
trunk/LMDZ.COMMON/libf/dyn3d_common/vitvert.F
r1300 r1422 4 4 SUBROUTINE vitvert ( convm , w ) 5 5 c 6 USE comvert_mod, ONLY: bp 7 6 8 IMPLICIT NONE 7 9 … … 30 32 #include "dimensions.h" 31 33 #include "paramet.h" 32 #include "comvert.h"33 34 34 35 REAL w(ip1jmp1,llm),convm(ip1jmp1,llm) -
trunk/LMDZ.COMMON/libf/dyn3d_common/writedynav.F90
r1403 r1422 8 8 USE infotrac, ONLY : nqtot, ttext 9 9 use com_io_dyn_mod, only : histaveid, histvaveid, histuaveid 10 USE comconst_mod, ONLY: cpp 11 USE temps_mod, ONLY: itau_dyn 10 12 11 13 implicit none … … 31 33 include "dimensions.h" 32 34 include "paramet.h" 33 include "comconst.h"34 include "comvert.h"35 35 include "comgeom.h" 36 include "temps.h"37 include "ener.h"38 include "logic.h"39 include "description.h"40 include "serre.h"41 36 include "iniprint.h" 42 37 -
trunk/LMDZ.COMMON/libf/dyn3d_common/writehist.F
r1403 r1422 9 9 USE infotrac, ONLY : nqtot, ttext 10 10 use com_io_dyn_mod, only : histid,histvid,histuid 11 USE temps_mod, ONLY: itau_dyn 11 12 implicit none 12 13 … … 35 36 #include "dimensions.h" 36 37 #include "paramet.h" 37 #include "comconst.h"38 #include "comvert.h"39 38 #include "comgeom.h" 40 #include "temps.h"41 #include "ener.h"42 #include "logic.h"43 #include "description.h"44 #include "serre.h"45 39 #include "iniprint.h" 46 40
Note: See TracChangeset
for help on using the changeset viewer.