Back to home page

MITgcm

 
 

    


Warning, /verification/global_oce_biogeo_bling/input_ad/data.profiles is written in an unsupported language. File is not indexed.

view on githubraw file Latest commit d3172737 on 2024-11-06 17:45:12 UTC
d3172737dc aver*0001 # **********************
                0002 # PROFILES cost function
                0003 # **********************
                0004 #
                0005 # NetCDF-file 'sample_prof.nc' only contains data for variables T, S, PH,
                0006 # but if available bling allows many more variables, which are
                0007 # left as example namelist entries without effect, because they are
                0008 # not in 'sample_prof.nc'.
                0009 #
                0010 # >> ncdump -h sample_prof.nc
                0011 # netcdf sample_prof {
                0012 # dimensions:
                0013 #       iPROF = 63 ;
                0014 #       iDEPTH = 25 ;
                0015 # variables:
                0016 #       double prof_depth(iDEPTH) ;
                0017 #       double prof_YYYYMMDD(iPROF) ;
                0018 #       double prof_HHMMSS(iPROF) ;
                0019 #       double prof_lon(iPROF) ;
                0020 #       double prof_lat(iPROF) ;
                0021 #       double prof_T(iPROF, iDEPTH) ;
                0022 #       double prof_Tweight(iPROF, iDEPTH) ;
                0023 #       double prof_S(iPROF, iDEPTH) ;
                0024 #       double prof_Sweight(iPROF, iDEPTH) ;
                0025 #       double prof_PH(iPROF, iDEPTH) ;
                0026 #       double prof_PHweight(iPROF, iDEPTH) ;
                0027 # }
                0028 
331566cbeb Jean*0029  &PROFILES_NML
                0030 # profilesDir = 'PROF',
                0031  profilesfiles(1) = 'sample_prof',
d3172737dc aver*0032  prof_make_nc = .true.,
                0033 # has T, S, and pH constraints.
                0034 # The default mult_profiles = 1,
                0035 # here we turn off the cost contribution of T and S.
331566cbeb Jean*0036  mult_profiles(1,1)   = 0.0,
                0037  mult_profiles(1,2)   = 0.0,
d3172737dc aver*0038  mult_profiles(1,14)  = 1.0,
                0039 #
                0040  prof_names(:,1)='prof_T',
                0041  prof_names(:,2)='prof_S',
                0042  prof_names(:,3)='prof_U',
                0043  prof_names(:,4)='prof_V',
                0044  prof_names(:,5)='prof_ptr',
                0045  prof_names(:,6)='prof_ssh',
                0046  prof_names(:,7)='prof_DIC',
                0047  prof_names(:,8)='prof_ALK',
                0048  prof_names(:,9)='prof_O2',
                0049  prof_names(:,10)='prof_NO3',
                0050  prof_names(:,11)='prof_PO4',
                0051  prof_names(:,12)='prof_FE',
                0052  prof_names(:,13)='prof_PCO',
                0053  prof_names(:,14)='prof_PH',
                0054  prof_names(:,15)='prof_CHL',
                0055  prof_names(:,16)='prof_POC',
                0056 #
                0057  prof_itracer(:,1)=1,
                0058  prof_itracer(:,2)=1,
                0059  prof_itracer(:,3)=1,
                0060  prof_itracer(:,4)=1,
                0061  prof_itracer(:,5)=1,
                0062  prof_itracer(:,6)=1,
                0063  prof_itracer(:,7)=1,
                0064  prof_itracer(:,8)=2,
                0065  prof_itracer(:,9)=3,
                0066  prof_itracer(:,10)=4,
                0067  prof_itracer(:,11)=5,
                0068  prof_itracer(:,12)=6,
                0069  prof_itracer(:,13)=1,
                0070  prof_itracer(:,14)=1,
                0071  prof_itracer(:,15)=1,
                0072  prof_itracer(:,16)=1,
                0073 #
                0074  prof_namesmod(:,1)='theta',
                0075  prof_namesmod(:,2)='salt',
                0076  prof_namesmod(:,3)='uVel',
                0077  prof_namesmod(:,4)='vVel',
                0078  prof_namesmod(:,5)='pTracer',
                0079  prof_namesmod(:,6)='etaN',
                0080  prof_namesmod(:,7)='pTracer',
                0081  prof_namesmod(:,8)='pTracer',
                0082  prof_namesmod(:,9)='pTracer',
                0083  prof_namesmod(:,10)='pTracer',
                0084  prof_namesmod(:,11)='pTracer',
                0085  prof_namesmod(:,12)='pTracer',
                0086  prof_namesmod(:,13)='PCO',
                0087  prof_namesmod(:,14)='PH',
                0088  prof_namesmod(:,15)='CHL',
                0089  prof_namesmod(:,16)='POC',
331566cbeb Jean*0090  &