Changeset 956
- Timestamp:
- 2008-05-14T18:46:05+02:00 (15 years ago)
- Location:
- trunk/NEMO/OFF_SRC
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/NEMO/OFF_SRC/daymod.F90
r719 r956 26 26 nday_year , & !: curent day counted from jan 1st of the current year 27 27 ndastp !: time step date in year/month/day aammjj 28 28 29 REAL(wp), PUBLIC :: & !: 29 30 adatrj , & !: number of elapsed days since the begining of the run … … 31 32 ! ! it is the accumulated duration of previous runs 32 33 ! ! that may have been run with different time steps. 34 35 INTEGER, PUBLIC, DIMENSION(12) :: nbiss = (/ 31, 29, 31, 30, 31, 30, & !: number of days per month 36 & 31, 31, 30, 31, 30, 31 /) !: (leap-year) 37 INTEGER, PUBLIC, DIMENSION(12) :: nobis = (/ 31, 28, 31, 30, 31, 30, & !: number of days per month 38 & 31, 31, 30, 31, 30, 31 /) !: (365 days a year) 39 33 40 !!---------------------------------------------------------------------- 34 41 !! OPA 9.0 , LOCEAN-IPSL (2005) -
trunk/NEMO/OFF_SRC/dtadyn.F90
r723 r956 15 15 USE in_out_manager ! I/O manager 16 16 USE phycst ! physical constants 17 USE ocesbc17 USE sbc_oce 18 18 USE ldfslp 19 USE blk_oce20 19 USE ldfeiv ! eddy induced velocity coef. (ldf_eiv routine) 21 20 USE ldftra_oce ! ocean tracer lateral physics … … 563 562 ! keep needed fluxes 564 563 ! 565 #if defined key_flx_bulk_monthly || defined key_flx_bulk_daily 566 vatm(:,:) = flx(:,:,jpwind) 567 #endif 564 !! wndm(:,:) = flx(:,:,jpwind) 568 565 freeze(:,:) = flx(:,:,jpice) 569 566 emp(:,:) = flx(:,:,jpemp) … … 630 627 ! keep needed fluxes 631 628 ! 632 #if defined key_flx_bulk_monthly || defined key_flx_bulk_daily 633 vatm(:,:) = flx(:,:,jpwind) 634 #endif 629 !! wndm(:,:) = flx(:,:,jpwind) 635 630 freeze(:,:) = flx(:,:,jpice) 636 631 emp(:,:) = flx(:,:,jpemp) … … 764 759 CALL iom_get ( numfl_t, jpdom_data, 'soshfldo', zqsr (:,: ), jkenr ) 765 760 CALL iom_get ( numfl_t, jpdom_data, 'soicecov', zice (:,: ), jkenr ) 766 CALL iom_get ( numfl_t, jpdom_data, 'sowindsp', zwspd(:,: ), jkenr )761 !! CALL iom_get ( numfl_t, jpdom_data, 'sowindsp', zwspd(:,: ), jkenr ) 767 762 768 763 ! file grid-U … … 896 891 ! flux : 897 892 ! 898 flxdta(:,:,jpwind,2) = zwspd(:,:) * tmask(:,:,1)893 !! flxdta(:,:,jpwind,2) = zwspd(:,:) * tmask(:,:,1) 899 894 flxdta(:,:,jpice,2) = MIN( 1., zice(:,:) ) * tmask(:,:,1) 900 895 flxdta(:,:,jpemp,2) = zemp(:,:) * tmask(:,:,1) -
trunk/NEMO/OFF_SRC/opa.F90
r719 r956 166 166 CALL dta_dyn(nit000) 167 167 168 #if defined key_ passivetrc168 #if defined key_top 169 169 CALL ini_trc ! Passive tracers 170 170 #endif -
trunk/NEMO/OFF_SRC/phycst.F90
r719 r956 15 15 16 16 !! * Shared module variables 17 INTEGER, PUBLIC, DIMENSION(12) :: & !:18 nbiss = (/ 31, 29, 31, 30, 31, 30, & !: number of days per month19 & 31, 31, 30, 31, 30, 31 /) , & ! (leap-year)20 nobis = (/ 31, 28, 31, 30, 31, 30, & !: number of days per month21 & 31, 31, 30, 31, 30, 31 /) ! (365 days a year)22 23 17 REAL(wp), PUBLIC :: & !: 24 18 rpi = 3.141592653589793_wp , & !: pi -
trunk/NEMO/OFF_SRC/step.F90
r719 r956 81 81 CALL dta_dyn( kstp ) ! Interpolation of the dynamical fields 82 82 83 #if defined key_ passivetrc83 #if defined key_top 84 84 !>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> 85 85 ! Passive Tracer Model
Note: See TracChangeset
for help on using the changeset viewer.