Changeset 1422 for trunk/LMDZ.GENERIC
- Timestamp:
- Apr 30, 2015, 12:33:45 PM (10 years ago)
- Location:
- trunk/LMDZ.GENERIC/libf
- Files:
-
- 12 added
- 12 deleted
- 69 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/dyn3d/addfi.F
r253 r1422 2 2 S pucov, pvcov, pteta, pq , pps , pmasse , 3 3 S pdufi, pdvfi, pdhfi,pdqfi, pdpfi ) 4 5 USE comvert_mod, ONLY: ap,bp 6 4 7 IMPLICIT NONE 5 8 c … … 46 49 #include "dimensions.h" 47 50 #include "paramet.h" 48 #include "comconst.h"49 51 #include "comgeom.h" 50 #include "serre.h"51 #include "comvert.h"52 52 c 53 53 c Arguments : -
trunk/LMDZ.GENERIC/libf/dyn3d/adv_h2o.F
r135 r1422 1 1 SUBROUTINE adv_h2o (nq,iq,q,w, pbaru, pbarv,dq) 2 3 USE logic_mod, ONLY: forward,leapf 4 2 5 IMPLICIT NONE 3 6 … … 19 22 #include "dimensions.h" 20 23 #include "paramet.h" 21 #include "logic.h"22 #include "comvert.h"23 24 24 25 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/advect.F
r135 r1422 1 1 SUBROUTINE advect(ucov,vcov,teta,w,massebx,masseby,du,dv,dteta) 2 3 USE comconst_mod, ONLY: daysec 4 USE logic_mod, ONLY: conser 5 USE ener_mod, ONLY: gtot 2 6 3 7 IMPLICIT NONE … … 23 27 #include "dimensions.h" 24 28 #include "paramet.h" 25 #include "comconst.h"26 #include "comvert.h"27 29 #include "comgeom.h" 28 #include "logic.h"29 #include "ener.h"30 30 31 31 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/amont.F
r135 r1422 1 1 SUBROUTINE amont (nq,iq,q,w, pbaru, pbarv,dq) 2 3 USE logic_mod, ONLY: forward,leapf 4 2 5 IMPLICIT NONE 3 6 … … 18 21 #include "dimensions.h" 19 22 #include "paramet.h" 20 #include "logic.h"21 #include "comvert.h"22 23 23 24 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/amont_qsat.F
r135 r1422 1 1 SUBROUTINE amont_qsat (nq,iq,q,teta,pk,w, pbaru, pbarv,dq) 2 3 USE comvert_mod, ONLY: preff 4 USE comconst_mod, ONLY: kappa,cpp 5 2 6 IMPLICIT NONE 3 7 … … 19 23 #include "dimensions.h" 20 24 #include "paramet.h" 21 #include "logic.h"22 #include "comvert.h"23 #include "comconst.h"24 25 #include "comgeom.h" 25 #include "serre.h"26 26 27 27 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/bernoui.F
r135 r1422 24 24 #include "dimensions.h" 25 25 #include "paramet.h" 26 #include "logic.h"27 26 c 28 27 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/caldyn.F
r135 r1422 2 2 $ (itau,ucov,vcov,teta,ps,masse,pk,pkf,phis , 3 3 $ phi,conser,du,dv,dteta,dp,w,pbaru,pbarv,time ) 4 5 USE comvert_mod, ONLY: ap,bp 4 6 5 7 IMPLICIT NONE … … 23 25 #include "dimensions.h" 24 26 #include "paramet.h" 25 #include "comconst.h"26 #include "comvert.h"27 27 #include "comgeom.h" 28 28 -
trunk/LMDZ.GENERIC/libf/dyn3d/caldyn0.F
r135 r1422 2 2 $ (itau,ucov,vcov,teta,ps,masse,pk,phis , 3 3 $ phi,w,pbaru,pbarv,time ) 4 5 USE comvert_mod, ONLY: ap,bp 4 6 5 7 IMPLICIT NONE … … 23 25 #include "dimensions.h" 24 26 #include "paramet.h" 25 #include "comconst.h"26 #include "comvert.h"27 27 #include "comgeom.h" 28 28 -
trunk/LMDZ.GENERIC/libf/dyn3d/convmas.F
r135 r1422 31 31 #include "dimensions.h" 32 32 #include "paramet.h" 33 #include "comvert.h"34 #include "logic.h"35 33 36 34 REAL pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm ),convm( ip1jmp1,llm ) -
trunk/LMDZ.GENERIC/libf/dyn3d/coordij.F
r135 r1422 15 15 #include "dimensions.h" 16 16 #include "paramet.h" 17 #include "comconst.h"18 17 #include "comgeom.h" 19 #include "serre.h"20 18 21 19 real zlon,zlat -
trunk/LMDZ.GENERIC/libf/dyn3d/defrun_new.F
r1407 r1422 41 41 use control_mod,only: nday, day_step, iperiod, anneeref, 42 42 & iconser, idissip, iphysiq, ecritphy 43 USE logic_mod, ONLY: hybrid,purmats,physic,grireg,fxyhypb,ysinus 44 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, 45 . alphax,alphay,taux,tauy 43 46 IMPLICIT NONE 44 47 … … 46 49 #include "paramet.h" 47 50 !#include "control.h" 48 #include "logic.h"49 #include "serre.h"50 51 #include "comdissnew.h" 51 52 #include "iniprint.h" -
trunk/LMDZ.GENERIC/libf/dyn3d/dissip.F
r135 r1422 1 1 SUBROUTINE dissip( vcov,ucov,teta,p, dv,du,dh ) 2 2 c 3 USE comconst_mod, ONLY: dtdiss 4 3 5 IMPLICIT NONE 4 6 … … 24 26 #include "dimensions.h" 25 27 #include "paramet.h" 26 #include "comconst.h"27 28 #include "comgeom.h" 28 29 #include "comdissnew.h" -
trunk/LMDZ.GENERIC/libf/dyn3d/disvert.F
r1397 r1422 4 4 USE ioipsl_getincom 5 5 USE callkeys_mod, ONLY: kastprof,pceil 6 USE comvert_mod, ONLY: ap,bp,sig,nivsigs,nivsig,pa,preff, 7 . aps,bps,presnivs,pseudoalt 6 8 7 9 c Auteur : F. Forget Y. Wanherdrick, P. Levan 8 10 c Nouvelle version 100% Mars !! 9 11 12 USE comconst_mod, ONLY: pi 13 USE logic_mod, ONLY: autozlevs,hybrid 14 10 15 IMPLICIT NONE 11 16 12 17 #include "dimensions.h" 13 18 #include "paramet.h" 14 #include "comvert.h"15 #include "comconst.h"16 #include "logic.h"17 19 18 20 -
trunk/LMDZ.GENERIC/libf/dyn3d/divgrad.F
r135 r1422 21 21 #include "comgeom.h" 22 22 #include "comdissipn.h" 23 #include "logic.h"24 23 c 25 24 INTEGER klevel -
trunk/LMDZ.GENERIC/libf/dyn3d/dteta1.F
r135 r1422 20 20 #include "dimensions.h" 21 21 #include "paramet.h" 22 #include "logic.h"23 22 24 23 REAL teta( ip1jmp1,llm ),pbaru( ip1jmp1,llm ),pbarv( ip1jm,llm) -
trunk/LMDZ.GENERIC/libf/dyn3d/dudv2.F
r135 r1422 25 25 #include "dimensions.h" 26 26 #include "paramet.h" 27 #include "comvert.h"28 27 29 28 REAL teta( ip1jmp1,llm ),pkf( ip1jmp1,llm ) ,bern( ip1jmp1,llm ), -
trunk/LMDZ.GENERIC/libf/dyn3d/dynetat0.F
r1416 r1422 2 2 . teta,q,masse,ps,phis,time) 3 3 use infotrac, only: tname, nqtot 4 USE comvert_mod, ONLY: pa,preff 5 USE comconst_mod, ONLY: im,jm,lllm,daysec,dtvr,rad,omeg,g,cpp, 6 . kappa 7 USE logic_mod, ONLY: fxyhypb,ysinus 8 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy, 9 . taux,tauy 10 USE temps_mod, ONLY: day_ini 11 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 4 12 IMPLICIT NONE 5 13 … … 23 31 #include "dimensions.h" 24 32 #include "paramet.h" 25 #include "temps.h"26 #include "comconst.h"27 #include "comvert.h"28 33 #include "comgeom.h" 29 #include "ener.h"30 34 #include "netcdf.inc" 31 #include "serre.h"32 #include "logic.h"33 35 !#include"advtrac.h" 34 36 -
trunk/LMDZ.GENERIC/libf/dyn3d/dynredem.F
r1416 r1422 1 1 SUBROUTINE dynredem0(fichnom,idayref,phis) 2 2 use infotrac, only: tname,nqtot 3 USE comvert_mod, ONLY: ap,bp,aps,bps,pa,preff,presnivs,pseudoalt 4 USE comconst_mod, ONLY: daysec,dtvr,rad,omeg,g,cpp,kappa,pi 5 USE logic_mod, ONLY: fxyhypb,ysinus 6 USE serre_mod, ONLY: clon,clat,grossismx,grossismy, 7 . dzoomx,dzoomy,taux,tauy 8 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 3 9 IMPLICIT NONE 4 10 c======================================================================= … … 9 15 #include "dimensions.h" 10 16 #include "paramet.h" 11 #include "comconst.h"12 #include "comvert.h"13 17 #include "comgeom.h" 14 #include "temps.h"15 #include "ener.h"16 #include "logic.h"17 18 #include "netcdf.inc" 18 #include "serre.h"19 19 !#include "advtrac.h" 20 20 c Arguments: … … 962 962 #include "paramet.h" 963 963 #include "netcdf.inc" 964 #include "comvert.h"965 964 #include "comgeom.h" 966 965 !#include"advtrac.h" -
trunk/LMDZ.GENERIC/libf/dyn3d/exner.F
r135 r1422 1 1 SUBROUTINE exner(ngrid,pext,aire,pks,pksf) 2 3 USE comconst_mod, ONLY: kappa,jmp1 4 2 5 IMPLICIT NONE 3 6 … … 7 10 c declarations: 8 11 c ------------- 9 10 #include "comconst.h"11 12 12 13 INTEGER ngrid -
trunk/LMDZ.GENERIC/libf/dyn3d/exner_hyb.F
r135 r1422 23 23 c ( voir note de Fr.Hourdin ) , 24 24 c 25 USE comvert_mod, ONLY: preff 26 USE comconst_mod, ONLY: jmp1,kappa,cpp 27 25 28 IMPLICIT NONE 26 29 c 27 30 #include "dimensions.h" 28 31 #include "paramet.h" 29 #include "comconst.h"30 32 #include "comgeom.h" 31 #include "comvert.h"32 #include "serre.h"33 33 34 34 INTEGER ngrid -
trunk/LMDZ.GENERIC/libf/dyn3d/fluxstoke.F
r135 r1422 6 6 ccc .. Modif. P. Le Van ( 20/12/97 ) ... 7 7 c 8 USE comvert_mod, ONLY: presnivs 9 USE comconst_mod, ONLY: dtvr,pi 10 8 11 IMPLICIT NONE 9 12 c 10 13 #include "dimensions.h" 11 14 #include "paramet.h" 12 #include "comconst.h"13 #include "comvert.h"14 15 #include "comgeom.h" 15 16 #include "tracstoke.h" -
trunk/LMDZ.GENERIC/libf/dyn3d/fxy.F
r135 r1422 2 2 , rlatu2,yprimu2, 3 3 , rlonu,xprimu,rlonv,xprimv,rlonm025,xprimm025,rlonp025,xprimp025) 4 5 USE comconst_mod, ONLY: pi 6 USE serre_mod, ONLY: pxo,pyo,alphax,alphay,transx,transy 4 7 5 8 IMPLICIT NONE … … 13 16 #include "dimensions.h" 14 17 #include "paramet.h" 15 #include "serre.h"16 #include "comconst.h"17 18 18 19 INTEGER i,j -
trunk/LMDZ.GENERIC/libf/dyn3d/fxysinus.F
r135 r1422 3 3 , rlonu,xprimu,rlonv,xprimv,rlonm025,xprimm025,rlonp025,xprimp025) 4 4 5 USE comconst_mod, ONLY: pi 5 6 6 7 IMPLICIT NONE … … 14 15 #include "dimensions.h" 15 16 #include "paramet.h" 16 #include "comconst.h"17 17 18 18 INTEGER i,j -
trunk/LMDZ.GENERIC/libf/dyn3d/gcm.F
r1416 r1422 7 7 ! use comgeomphy, only: initcomgeomphy 8 8 use filtreg_mod, only: inifilr 9 USE comvert_mod, ONLY: ap,bp 10 USE comconst_mod, ONLY: daysec,dtvr,dtphys,dtdiss,rad,g,r,cpp 11 USE logic_mod, ONLY: ecripar,forward,leapf,apphys,statcl,conser, 12 . apdiss,purmats,physic,apphys 13 USE temps_mod, ONLY: day_ini,day_end,itaufin,dt 9 14 IMPLICIT NONE 10 15 … … 41 46 #include "dimensions.h" 42 47 #include "paramet.h" 43 #include "comconst.h"44 48 #include "comdissnew.h" 45 #include "comvert.h"46 49 #include "comgeom.h" 47 #include "logic.h"48 #include "temps.h"49 50 !#include "control.h" 50 #include "ener.h"51 51 #include "netcdf.inc" 52 #include "serre.h"53 52 #include "tracstoke.h" 54 53 !#include"advtrac.h" -
trunk/LMDZ.GENERIC/libf/dyn3d/geopot.F
r135 r1422 26 26 #include "dimensions.h" 27 27 #include "paramet.h" 28 #include "comvert.h"29 28 30 29 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/gradiv.F
r135 r1422 19 19 #include "paramet.h" 20 20 #include "comdissipn.h" 21 #include "logic.h"22 21 23 22 INTEGER klevel -
trunk/LMDZ.GENERIC/libf/dyn3d/groupe.F
r135 r1422 17 17 #include "dimensions.h" 18 18 #include "paramet.h" 19 #include "comconst.h"20 19 #include "comgeom2.h" 21 #include "comvert.h"22 20 23 21 -
trunk/LMDZ.GENERIC/libf/dyn3d/groupeun.F
r135 r1422 24 24 #include "dimensions.h" 25 25 #include "paramet.h" 26 #include "comconst.h"27 26 #include "comgeom2.h" 28 27 -
trunk/LMDZ.GENERIC/libf/dyn3d/iniav.F
r135 r1422 1 1 SUBROUTINE iniav(fichnom,pday0,pyear0,pfrac0,pperiod,phis,nq) 2 3 USE comvert_mod, ONLY: ap,bp,nivsigs,nivsig,presnivs 4 2 5 IMPLICIT NONE 3 6 … … 17 20 #include "comav.h" 18 21 #include "netcdf.inc" 19 #include "comvert.h"20 22 #include "comgeom.h" 21 23 -
trunk/LMDZ.GENERIC/libf/dyn3d/iniconst.F
r1216 r1422 2 2 3 3 use control_mod, only: iphysiq, idissip 4 USE comconst_mod, ONLY: im,jm,lllm,imp1,jmp1,lllmp1,lllmm1, 5 . dtdiss,dtvr,dtphys,pi,r,cpp,kappa,unsim 4 6 IMPLICIT NONE 5 7 c … … 12 14 #include "dimensions.h" 13 15 #include "paramet.h" 14 #include "comconst.h"15 #include "temps.h"16 16 !#include "control.h" 17 #include "comvert.h"18 17 19 18 -
trunk/LMDZ.GENERIC/libf/dyn3d/inidissip.F
r1216 r1422 9 9 10 10 use control_mod, only: idissip, iperiod 11 USE comvert_mod, ONLY: aps,bps,pseudoalt,preff 12 USE comconst_mod, ONLY: dtdiss,dtvr 11 13 IMPLICIT NONE 12 14 #include "dimensions.h" 13 15 #include "paramet.h" 14 16 #include "comdissipn.h" 15 #include "comconst.h"16 #include "comvert.h"17 17 !#include "control.h" 18 18 -
trunk/LMDZ.GENERIC/libf/dyn3d/inigeom.F
r135 r1422 14 14 c 15 15 c 16 USE comconst_mod, ONLY: rad,omeg,g,pi 17 USE logic_mod, ONLY: fxyhypb,ysinus 18 USE serre_mod, ONLY: clon,clat,transx,transy,alphax,alphay, 19 . pxo,pyo,grossismx,grossismy,dzoomx,dzoomy,taux,tauy 20 16 21 IMPLICIT NONE 17 22 c 18 23 #include "dimensions.h" 19 24 #include "paramet.h" 20 #include "comconst.h"21 25 #include "comgeom2.h" 22 #include "serre.h"23 #include "logic.h"24 26 #include "comdissnew.h" 25 27 -
trunk/LMDZ.GENERIC/libf/dyn3d/integrd.F
r135 r1422 2 2 $ ( nq,vcovm1,ucovm1,tetam1,psm1,massem1, 3 3 $ dv,du,dteta,dq,dp,vcov,ucov,teta,q,ps,masse,phis,finvmaold ) 4 5 USE comvert_mod, ONLY: ap,bp 6 USE logic_mod, ONLY: leapf 7 USE serre_mod, ONLY: alphax 8 USE temps_mod, ONLY: dt 4 9 5 10 IMPLICIT NONE … … 32 37 #include "dimensions.h" 33 38 #include "paramet.h" 34 #include "comconst.h"35 39 #include "comgeom.h" 36 #include "comvert.h"37 #include "logic.h"38 #include "temps.h"39 #include "serre.h"40 40 41 41 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/lectflux.F
r135 r1422 5 5 s frac_impa,frac_nucl,phis) 6 6 7 USE comconst_mod, ONLY: dtvr,dtphys 8 7 9 IMPLICIT NONE 8 10 9 11 #include "dimensions.h" 10 12 #include "paramet.h" 11 12 #include "comvert.h"13 #include "comconst.h"14 13 #include "comgeom2.h" 15 14 -
trunk/LMDZ.GENERIC/libf/dyn3d/massbar.F
r135 r1422 16 16 #include "dimensions.h" 17 17 #include "paramet.h" 18 #include "comconst.h"19 18 #include "comgeom.h" 20 19 c -
trunk/LMDZ.GENERIC/libf/dyn3d/massbarxy.F
r135 r1422 16 16 #include "dimensions.h" 17 17 #include "paramet.h" 18 #include "comconst.h"19 18 #include "comgeom.h" 20 19 c -
trunk/LMDZ.GENERIC/libf/dyn3d/massdair.F
r135 r1422 17 17 #include "dimensions.h" 18 18 #include "paramet.h" 19 #include "comconst.h"20 19 #include "comgeom.h" 21 20 c -
trunk/LMDZ.GENERIC/libf/dyn3d/nxgrarot.F
r135 r1422 19 19 #include "paramet.h" 20 20 #include "comdissipn.h" 21 #include "logic.h"22 21 c 23 22 INTEGER klevel -
trunk/LMDZ.GENERIC/libf/dyn3d/ps_amontF
r135 r1422 15 15 #include "dimensions.h" 16 16 #include "paramet.h" 17 #include "logic.h"18 #include "comvert.h"19 17 #include "comgeom.h" 20 18 c -
trunk/LMDZ.GENERIC/libf/dyn3d/sortvarc.F
r135 r1422 2 2 $(itau,ucov,teta,ps,masse,pk,phis,vorpot,phi,bern,dp,time , 3 3 $ vcov ) 4 5 USE comconst_mod, ONLY: daysec,dtvr,rad,g,omeg 6 USE temps_mod, ONLY: day_ini 7 USE ener_mod, ONLY: etot,ptot,ztot,stot,ang, 8 . etot0,ptot0,ztot0,stot0,ang0, 9 . rmsdpdt,rmsv 10 4 11 IMPLICIT NONE 5 12 … … 21 28 #include "dimensions.h" 22 29 #include "paramet.h" 23 #include "comconst.h"24 #include "comvert.h"25 30 #include "comgeom.h" 26 #include "ener.h"27 #include "logic.h"28 #include "temps.h"29 31 30 32 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/sortvarc0.F
r135 r1422 2 2 $(itau,ucov,teta,ps,masse,pk,phis,vorpot,phi,bern,dp,time , 3 3 $ vcov) 4 5 USE comconst_mod, ONLY: dtvr,daysec,rad,g,omeg 6 USE temps_mod, ONLY: day_ini 7 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0,rmsv,rmsdpdt 8 4 9 IMPLICIT NONE 5 10 … … 21 26 #include "dimensions.h" 22 27 #include "paramet.h" 23 #include "comconst.h"24 #include "comvert.h"25 28 #include "comgeom.h" 26 #include "ener.h"27 #include "logic.h"28 #include "temps.h"29 29 30 30 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/sponge_mod.F90
r1006 r1422 1 1 module sponge_mod 2 3 USE comvert_mod, ONLY: ap,bp,preff 2 4 3 5 implicit none … … 34 36 #include "paramet.h" 35 37 #include "comdissip.h" 36 #include "comvert.h"37 38 #include "comgeom2.h" 38 39 -
trunk/LMDZ.GENERIC/libf/dyn3d/tourpot.F
r135 r1422 22 22 #include "paramet.h" 23 23 #include "comgeom.h" 24 #include "logic.h"25 24 26 25 REAL rot( ip1jm,llm ) -
trunk/LMDZ.GENERIC/libf/dyn3d/traceur.F
r135 r1422 29 29 #include "dimensions.h" 30 30 #include "paramet.h" 31 #include "comconst.h"32 31 33 32 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/tracvl.F
r253 r1422 9 9 10 10 c 11 USE comconst_mod, ONLY: dtvr 12 11 13 IMPLICIT NONE 12 14 c 13 15 #include "dimensions.h" 14 16 #include "paramet.h" 15 #include "comconst.h"16 #include "comvert.h"17 17 #include "comgeom.h" 18 18 -
trunk/LMDZ.GENERIC/libf/dyn3d/vanleer.F
r135 r1422 2 2 * p ,masse, dq , iadv1, teta, pk ) 3 3 c 4 USE comconst_mod, ONLY: dtvr 5 4 6 IMPLICIT NONE 5 7 c … … 18 20 #include "dimensions.h" 19 21 #include "paramet.h" 20 #include "comconst.h"21 22 22 23 c Arguments: -
trunk/LMDZ.GENERIC/libf/dyn3d/vitvert.F
r135 r1422 1 1 SUBROUTINE vitvert ( convm , w ) 2 2 c 3 USE comvert_mod, ONLY: bp 4 3 5 IMPLICIT NONE 4 6 … … 27 29 #include "dimensions.h" 28 30 #include "paramet.h" 29 #include "comvert.h"30 31 31 32 REAL w(ip1jmp1,llm),convm(ip1jmp1,llm) -
trunk/LMDZ.GENERIC/libf/dyn3d/vlsplt.F
r135 r1422 18 18 #include "dimensions.h" 19 19 #include "paramet.h" 20 #include "logic.h"21 #include "comvert.h"22 #include "comconst.h"23 20 24 21 c … … 129 126 #include "dimensions.h" 130 127 #include "paramet.h" 131 #include "logic.h"132 #include "comvert.h"133 #include "comconst.h"134 128 c 135 129 c … … 443 437 c par des "dyq" trop faible (special compilateur SUN) 27/11/2003 F. Forget 444 438 439 USE comconst_mod, ONLY: pi 440 445 441 IMPLICIT NONE 446 442 c 447 443 #include "dimensions.h" 448 444 #include "paramet.h" 449 #include "logic.h"450 #include "comvert.h"451 #include "comconst.h"452 445 #include "comgeom.h" 453 446 c … … 744 737 #include "dimensions.h" 745 738 #include "paramet.h" 746 #include "logic.h"747 #include "comvert.h"748 #include "comconst.h"749 739 c 750 740 c -
trunk/LMDZ.GENERIC/libf/dyn3d/vlspltqs.F
r135 r1422 19 19 c pk exner au milieu des couches necessaire pour calculer Qsat 20 20 c -------------------------------------------------------------------- 21 USE comconst_mod, ONLY: cpp 22 21 23 IMPLICIT NONE 22 24 c 23 25 #include "dimensions.h" 24 26 #include "paramet.h" 25 #include "logic.h"26 #include "comvert.h"27 #include "comconst.h"28 27 29 28 c … … 170 169 #include "dimensions.h" 171 170 #include "paramet.h" 172 #include "logic.h"173 #include "comvert.h"174 #include "comconst.h"175 171 c 176 172 c … … 489 485 c 490 486 c -------------------------------------------------------------------- 487 USE comconst_mod, ONLY: pi 488 491 489 IMPLICIT NONE 492 490 c 493 491 #include "dimensions.h" 494 492 #include "paramet.h" 495 #include "logic.h"496 #include "comvert.h"497 #include "comconst.h"498 493 #include "comgeom.h" 499 494 c -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/calfis.F
r1403 r1422 7 7 c ......... 8 8 USE infotrac, ONLY: tname, nqtot 9 USE comvert_mod, ONLY: preff 10 USE comconst_mod, ONLY: dtphys,kappa,cpp,pi 9 11 IMPLICIT NONE 10 12 c======================================================================= … … 63 65 #include "dimensions.h" 64 66 #include "paramet.h" 65 #include "temps.h"66 67 67 68 INTEGER ngridmx,nq 68 69 PARAMETER( ngridmx = 2+(jjm-1)*iim - 1/jjm ) 69 70 70 #include "comconst.h"71 #include "comvert.h"72 71 #include "comgeom2.h" 73 72 !#include "control.h" -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/datareadnc.F
r1403 r1422 45 45 ! to use 'getin' 46 46 USE ioipsl_getincom 47 USE comconst_mod, ONLY: g,pi 47 48 implicit none 48 49 … … 50 51 #include "paramet.h" 51 52 #include "comgeom.h" 52 #include "comconst.h"53 53 #include "netcdf.inc" 54 54 … … 95 95 DIMENSION string(4) 96 96 97 #include "fxyprim.h"97 !#include "fxyprim.h" 98 98 99 99 pi=2.*ASIN(1.) -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/grid_noro1.F
r1403 r1422 51 51 c IMPLICIT INTEGER (I,J) 52 52 c IMPLICIT REAL(X,Z) 53 54 USE comconst_mod, ONLY: rad 55 53 56 implicit none 54 57 integer iusn,jusn,iext … … 57 60 c!-*- include 'comcstfi.h' 58 61 #include "dimensions.h" 59 #include "comconst.h"60 62 c!-*- 61 63 c!-*- parameter(iim=cols,jjm=rows) -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/ini_archive.F
r1403 r1422 37 37 USE comsoil_h 38 38 ! use control_mod 39 USE comvert_mod, ONLY: ap,bp,aps,bps,presnivs,pseudoalt 40 USE comconst_mod, ONLY: daysec,dtvr,rad,omeg,g,kappa,pi 39 41 implicit none 40 42 … … 42 44 !#include "dimphys.h" 43 45 #include "paramet.h" 44 #include "comconst.h"45 #include "comvert.h"46 46 #include "comgeom.h" 47 #include "temps.h"48 #include "ener.h"49 #include "logic.h"50 #include "serre.h"51 47 !#include "control.h" 52 48 -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/iniphysiq.F90
r1403 r1422 19 19 use infotrac, only : nqtot ! number of advected tracers 20 20 use planete_mod, only: ini_planete_mod 21 USE comvert_mod, ONLY: ap,bp,preff 21 22 22 23 implicit none 23 24 include "dimensions.h" 24 include "comvert.h"25 25 include "iniprint.h" 26 26 -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/lect_start_archive.F
r1421 r1422 13 13 ! to use 'getin' 14 14 USE callkeys_mod, ONLY: ok_slab_ocean 15 USE comvert_mod, ONLY: ap,bp,aps,bps,preff 16 USE comconst_mod, ONLY: kappa,g,pi 15 17 16 18 c======================================================================= … … 35 37 !#include "planete.h" 36 38 #include "paramet.h" 37 #include "comconst.h"38 #include "comvert.h"39 39 #include "comgeom2.h" 40 40 !#include "control.h" 41 !#include "logic.h"42 #include "ener.h"43 #include "temps.h"44 41 #include "netcdf.inc" 45 42 !#include"advtrac.h" -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/newstart.F
r1421 r1422 31 31 use slab_ice_h, only:noceanmx 32 32 use filtreg_mod, only: inifilr 33 USE comvert_mod, ONLY: ap,bp,aps,bps,pa,preff 34 USE comconst_mod, ONLY: lllm,daysec,dtvr,dtphys,cpp,kappa, 35 . rad,omeg,g,r,pi 36 USE serre_mod, ONLY: alphax 37 USE temps_mod, ONLY: day_ini 38 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 33 39 implicit none 34 40 … … 38 44 !#include "planete.h" 39 45 #include "paramet.h" 40 #include "comconst.h"41 #include "comvert.h"42 46 #include "comgeom2.h" 43 47 !#include "control.h" 44 #include "logic.h"45 #include "ener.h"46 #include "temps.h"47 48 #include "comdissnew.h" 48 #include "serre.h"49 49 #include "netcdf.inc" 50 50 !#include "advtrac.h" -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/start2archive.F
r1415 r1422 31 31 USE callkeys_mod, ONLY: ok_slab_ocean 32 32 use filtreg_mod, only: inifilr 33 USE comvert_mod, ONLY: ap,bp 34 USE comconst_mod, ONLY: cpp,g 35 USE logic_mod, ONLY: grireg 36 USE temps_mod, ONLY: day_ini 33 37 implicit none 34 38 … … 36 40 integer, parameter :: ngridmx = (2+(jjm-1)*iim - 1/jjm) 37 41 #include "paramet.h" 38 #include "comconst.h"39 42 #include "comdissip.h" 40 #include "comvert.h"41 43 #include "comgeom.h" 42 #include "logic.h"43 #include "temps.h"44 44 !#include "control.h" 45 #include "ener.h"46 45 47 46 !#include "dimphys.h" -
trunk/LMDZ.GENERIC/libf/dynlonlat_phylonlat/phystd/write_archive.F
r1403 r1422 37 37 #include "dimensions.h" 38 38 #include "paramet.h" 39 #include "comvert.h"40 39 #include "comgeom.h" 41 #include "temps.h"42 40 #include "netcdf.inc" 43 41 -
trunk/LMDZ.GENERIC/libf/filtrez/filtreg_mod.F90
r1403 r1422 7 7 ! ... H. Upadhyaya, O.Sharma ... 8 8 ! 9 USE logic_mod, ONLY: fxyhypb,ysinus 10 USE serre_mod, ONLY: alphax 11 9 12 IMPLICIT NONE 10 13 ! … … 19 22 #include "comgeom.h" 20 23 #include "coefils.h" 21 #include "logic.h"22 #include "serre.h"23 24 24 25 REAL dlonu(iim),dlatu(jjm) -
trunk/LMDZ.GENERIC/libf/filtrez/inifgn.F
r135 r1422 8 8 #include "paramet.h" 9 9 #include "comgeom.h" 10 #include "serre.h"11 10 12 11 c -
trunk/LMDZ.GENERIC/libf/phystd/dyn1d/rcm1d.F
r1403 r1422 23 23 use callkeys_mod, only: tracer,check_cpp_match,rings_shadow, 24 24 & specOLR,water,pceil,ok_slab_ocean 25 USE comvert_mod, ONLY: ap,bp,aps,bps,pa,preff 26 USE logic_mod, ONLY: hybrid,autozlevs 25 27 implicit none 26 28 … … 52 54 #include "paramet.h" 53 55 !include "dimphys.h" 54 #include "comvert.h"55 56 #include "netcdf.inc" 56 #include "logic.h"57 57 #include "comgeom.h" 58 58 -
trunk/LMDZ.GENERIC/libf/phystd/inistats.F
r1397 r1422 3 3 use mod_phys_lmdz_para, only : is_master 4 4 use statto_mod, only: istats,istime 5 USE comvert_mod, ONLY: ap,bp,aps,bps,preff,pseudoalt,presnivs 6 USE comconst_mod, ONLY: daysec,dtphys,pi 5 7 implicit none 6 8 … … 8 10 #include "paramet.h" 9 11 #include "comgeom.h" 10 #include "comvert.h"11 #include "comconst.h"12 12 #include "netcdf.inc" 13 13 -
trunk/LMDZ.GENERIC/libf/phystd/iniwrite.F
r1384 r1422 4 4 use comcstfi_mod, only: rad, omeg, g, mugaz, rcp, daysec, dtphys, 5 5 & pi 6 USE comvert_mod, ONLY: ap,bp,aps,bps,pseudoalt 7 USE logic_mod, ONLY: fxyhypb,ysinus 8 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy 9 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 6 10 IMPLICIT NONE 7 11 … … 24 28 #include "dimensions.h" 25 29 #include "paramet.h" 26 #include "comvert.h"27 30 #include "comgeom.h" 28 #include "ener.h"29 #include "logic.h"30 31 #include "netcdf.inc" 31 #include "serre.h"32 32 33 33 c Arguments: -
trunk/LMDZ.GENERIC/libf/phystd/iniwrite_specIR.F
r1384 r1422 5 5 use comcstfi_mod, only: rad, omeg, g, mugaz, rcp, daysec, dtphys, 6 6 & pi 7 USE logic_mod, ONLY: fxyhypb,ysinus 8 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy 9 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 7 10 8 11 implicit none … … 26 29 #include "dimensions.h" 27 30 #include "paramet.h" 28 #include "comvert.h"29 31 #include "comgeom.h" 30 #include "temps.h"31 #include "ener.h"32 #include "logic.h"33 32 #include "netcdf.inc" 34 #include "serre.h"35 33 !#include"dimphys.h" 36 34 -
trunk/LMDZ.GENERIC/libf/phystd/iniwrite_specVI.F
r1384 r1422 6 6 use comcstfi_mod, only: rad, omeg, g, mugaz, rcp, daysec, dtphys, 7 7 & pi 8 USE logic_mod, ONLY: fxyhypb,ysinus 9 USE serre_mod, ONLY: clon,clat,grossismx,grossismy,dzoomx,dzoomy 10 USE ener_mod, ONLY: etot0,ptot0,ztot0,stot0,ang0 11 8 12 implicit none 9 13 … … 26 30 #include "dimensions.h" 27 31 #include "paramet.h" 28 #include "comvert.h"29 32 #include "comgeom.h" 30 #include "temps.h"31 #include "ener.h"32 #include "logic.h"33 33 #include "netcdf.inc" 34 #include "serre.h"35 34 !#include"dimphys.h" 36 35 -
trunk/LMDZ.GENERIC/libf/phystd/writediagfi.F
r1318 r1422 44 44 & is_master, gather 45 45 USE mod_grid_phy_lmdz, only : klon_glo, Grid1Dto2D_glo 46 USE temps_mod, ONLY: day_ini 46 47 implicit none 47 48 … … 49 50 include "dimensions.h" 50 51 include "paramet.h" 51 include "comvert.h"52 52 include "comgeom.h" 53 53 include "netcdf.inc" 54 include "temps.h"55 54 56 55 ! Arguments on input: -
trunk/LMDZ.GENERIC/libf/phystd/writediagspecIR.F
r1397 r1422 50 50 use control_mod, only: ecritphy, iphysiq, day_step 51 51 use callkeys_mod, only: iradia 52 USE temps_mod, ONLY: day_ini 52 53 53 54 implicit none … … 58 59 #include "paramet.h" 59 60 !#include "control.h" 60 #include "comvert.h"61 61 #include "comgeom.h" 62 62 #include "netcdf.inc" 63 #include "temps.h"64 63 65 64 ! Arguments on input: -
trunk/LMDZ.GENERIC/libf/phystd/writediagspecVI.F
r1397 r1422 50 50 use control_mod, only: ecritphy, iphysiq, day_step 51 51 use callkeys_mod, only: iradia 52 USE temps_mod, ONLY: day_ini 52 53 53 54 implicit none … … 58 59 #include "paramet.h" 59 60 !#include "control.h" 60 #include "comvert.h"61 61 #include "comgeom.h" 62 62 #include "netcdf.inc" 63 #include "temps.h"64 63 65 64 ! Arguments on input: -
trunk/LMDZ.GENERIC/libf/phystd/wstats.F90
r1397 r1422 9 9 #include "dimensions.h" 10 10 !#include "dimphys.h" 11 #include "comconst.h"12 11 #include "netcdf.inc" 13 12
Note: See TracChangeset
for help on using the changeset viewer.