Changeset 935 for LMDZ4/branches/LMDZ4_V3_patches/libf/dyn3d
- Timestamp:
- Mar 26, 2008, 2:06:32 PM (17 years ago)
- Location:
- LMDZ4/branches/LMDZ4_V3_patches/libf/dyn3d
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ4/branches/LMDZ4_V3_patches/libf/dyn3d/conf_gcm.F
r844 r935 593 593 offline = .FALSE. 594 594 CALL getin('offline',offline) 595 596 !Config Key = ok_dynzon 597 !Config Desc = calcul et sortie des transports 598 !Config Def = n 599 !Config Help = Permet de mettre en route le calcul des transports 600 !Config 601 ok_dynzon = .FALSE. 602 CALL getin('ok_dynzon',ok_dynzon) 595 603 596 604 … … 636 644 write(lunout,*)' tauyy = ', tauyy 637 645 write(lunout,*)' offline = ', offline 646 write(lunout,*)' ok_dynzon = ', ok_dynzon 638 647 639 648 RETURN … … 750 759 write(lunout,*)' offline = ', offline 751 760 761 !Config Key = ok_dynzon 762 !Config Desc = calcul et sortie des transports 763 !Config Def = n 764 !Config Help = Permet de mettre en route le calcul des transports 765 !Config 766 ok_dynzon = .FALSE. 767 CALL getin('ok_dynzon',ok_dynzon) 752 768 753 769 write(lunout,*)' #########################################' … … 792 808 write(lunout,*)' tauy = ', tauy 793 809 write(lunout,*)' offline = ', offline 810 write(lunout,*)' ok_dynzon = ', ok_dynzon 794 811 c 795 812 RETURN -
LMDZ4/branches/LMDZ4_V3_patches/libf/dyn3d/control.h
r844 r935 14 14 & iperiod,iapp_tracvl,iconser,iecri,idissip,iphysiq , & 15 15 & periodav,ecritphy,iecrimoy,dayref,anneeref, & 16 & raz_date,offline,ip_ebil_dyn 16 & raz_date,offline,ip_ebil_dyn,ok_dynzon 17 17 18 18 INTEGER nday,day_step,iperiod,iapp_tracvl,iconser,iecri, & … … 21 21 REAL periodav, ecritphy 22 22 logical offline 23 logical ok_dynzon 23 24 24 25 !----------------------------------------------------------------------- -
LMDZ4/branches/LMDZ4_V3_patches/libf/dyn3d/leapfrog.F
r845 r935 536 536 ENDIF 537 537 #ifdef CPP_IOIPSL 538 IF (ok_dynzon) THEN 538 539 CALL writedynav(histaveid, nqmx, itau,vcov , 539 540 , ucov,teta,pk,phi,q,masse,ps,phis) 540 541 call bilan_dyn (2,dtvr*iperiod,dtvr*day_step*periodav, 541 542 , ps,masse,pk,pbaru,pbarv,teta,phi,ucov,vcov,q) 543 ENDIF 542 544 #endif 543 545 … … 642 644 ENDIF 643 645 #ifdef CPP_IOIPSL 644 CALL writedynav(histaveid, nqmx, itau,vcov , 646 IF (ok_dynzon) THEN 647 CALL writedynav(histaveid, nqmx, itau,vcov , 645 648 , ucov,teta,pk,phi,q,masse,ps,phis) 646 call bilan_dyn (2,dtvr*iperiod,dtvr*day_step*periodav,649 call bilan_dyn (2,dtvr*iperiod,dtvr*day_step*periodav, 647 650 , ps,masse,pk,pbaru,pbarv,teta,phi,ucov,vcov,q) 651 ENDIF 648 652 #endif 649 653
Note: See TracChangeset
for help on using the changeset viewer.