TNO Intern

Commit 73783ee3 authored by Arjo Segers's avatar Arjo Segers
Browse files

Added template settings for application of observation operator with S5p/HCHO data.

parent de25f0fe
Loading
Loading
Loading
Loading
+6 −1
Original line number Diff line number Diff line
@@ -258,11 +258,16 @@ program Tutorial_Oper_S5p
  ! settings
  !~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  
  ! input settings:
  ! input settings for S5p/NO2:
  rcfile = 'tutorial_oper_S5p.rc'
  ! base of keywords in rcfile:
  rcbase = 'tutorial.S5p.no2'

  !! input settings for S5p/HCHO:
  !rcfile = 'tutorial_oper_S5p-HCHO.rc'
  !! base of keywords in rcfile:
  !rcbase = 'tutorial.S5p.hcho'
  
  !!~ input settings for synthetic S4/NO2
  !rcfile = 'tutorial_oper_S4-syn.rc'
  !! base of keywords in rcfile:
+150 −0
Original line number Diff line number Diff line
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!
!!! Settings for CSO tutorial program.
!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!


!-------------------------------------------------
! tutorial settings
!-------------------------------------------------

! time range:
tutorial.timerange.start           :  2018-06-01 00:00
tutorial.timerange.end             :  2018-06-04 00:00

! selected domain:
tutorial.domain.west               :  -10
tutorial.domain.east               :   30
tutorial.domain.south              :   35
tutorial.domain.north              :   65

! grid resolution:
tutorial.grid.dlon                 :  0.1
tutorial.grid.dlat                 :  0.1

! mapping from footprints to grid cells using sample points in polygon;
! sample points is centroid of footprint (level 0),
! or centroids of triangles in which footprint is recursevely devided;
! number of points for 4-sided footprint:
!  1 point (levels=0), 4 (1), 16 (2), 64 (3)
tutorial.mapping.levels            :  3


!-------------------------------------------------
! satellite product
!-------------------------------------------------

! template for listing with converted files:
tutorial.S5p.hcho.listing           : ../CSO-data/S5p/listing-HCHO-CAMS.csv

! also read info on original track (T|F)?
! if enabled, this will be stored in the output too:
tutorial.S5p.hcho.with_track        :  T

! put out mapping arrays? used for regridding:
tutorial.S5p.hcho.with_mapping      :  T

!~ data

! data variables:
!   hp   : half-level pressures for retrieval layers
!   yr   : retrieval
!   vr   : retrieval error covariance
!   A    : averaging kernel
!   M    : airmass factor
tutorial.S5p.hcho.dvars             :  hp yr vr A

! half-level pressures:
!~ dimensions, copied from data file:
tutorial.S5p.hcho.dvar.hp.dims      :  layeri
!~ source variable:
tutorial.S5p.hcho.dvar.hp.source    :  pressure

! retrieval: 
!~ dimensions, copied from data file:
tutorial.S5p.hcho.dvar.yr.dims      :  retr
!~ source variable:
tutorial.S5p.hcho.dvar.yr.source    :  vcd

! retrieval error covariance: 
!~ dimensions, copied from data file:
tutorial.S5p.hcho.dvar.vr.dims      :  retr retr
!~ source variable:
tutorial.S5p.hcho.dvar.vr.source    :  vcd_errvar

! kernel:
!~ dimensions, copied from data file:
tutorial.S5p.hcho.dvar.A.dims       :  retr layer
!~ source variable:
tutorial.S5p.hcho.dvar.A.source     :  kernel


!~ state

! state varaiables to be put out from model:
!   mod_conc   : model concentrations       over footprint
!   mod_hp     : model half-level pressures over footprint
!   mod_*      : auxilary model data        over footprint
!   xs         : simulated profile at apriori layers
!   ys         : simulated retrieval profile
tutorial.S5p.hcho.vars                         :  mod_conc mod_hp mod_tcc mod_cc xs ys

! model concentration profile:
!~ model layer dimension:
tutorial.S5p.hcho.var.mod_conc.dims            :  model_layer
!~ standard attributes:
tutorial.S5p.hcho.var.mod_conc.attrs           :  long_name units
tutorial.S5p.hcho.var.mod_conc.attr.long_name  :  model HCHO concentrations
tutorial.S5p.hcho.var.mod_conc.attr.units      :  ppb

! model hpentration profile:
!~ model layer interfaces:
tutorial.S5p.hcho.var.mod_hp.dims              :  model_layeri
!~ standard attributes:
tutorial.S5p.hcho.var.mod_hp.attrs             :  long_name units
tutorial.S5p.hcho.var.mod_hp.attr.long_name    :  model pressure at layer interfaces
tutorial.S5p.hcho.var.mod_hp.attr.units        :  Pa

! total cloud cover:
!~ no extra dimensions:
tutorial.S5p.hcho.var.mod_tcc.dims             :  
!~ standard attributes:
tutorial.S5p.hcho.var.mod_tcc.attrs            :  long_name units
tutorial.S5p.hcho.var.mod_tcc.attr.long_name   :  total cloud cover
tutorial.S5p.hcho.var.mod_tcc.attr.units       :  1

! cloud cover profiles:
!~ model layer dimension:
tutorial.S5p.hcho.var.mod_cc.dims              :  model_layer
!~ standard attributes:
tutorial.S5p.hcho.var.mod_cc.attrs             :  long_name units
tutorial.S5p.hcho.var.mod_cc.attr.long_name    :  cloud cover
tutorial.S5p.hcho.var.mod_cc.attr.units        :  1

! model concentrations at apriori layers:
!~ apriori layers:
tutorial.S5p.hcho.var.xs.dims                  :  layer
!~ how computed:
tutorial.S5p.hcho.var.xs.formula               :  LayerAverage( hp, mod_hp, mod_conc )
tutorial.S5p.hcho.var.xs.formula_terms         :  hp: hp mod_hp: mod_hp mod_conc: mod_conc
!~ standard attributes:
tutorial.S5p.hcho.var.xs.attrs                 :  long_name units
tutorial.S5p.hcho.var.xs.attr.long_name        :  model simulations at apriori layers
tutorial.S5p.hcho.var.xs.attr.units            :  mol m-2

! simulated retrievals
!~ retrieval layers:
tutorial.S5p.hcho.var.ys.dims                  :  retr
!~ how computed:
tutorial.S5p.hcho.var.ys.formula               :  A x
tutorial.S5p.hcho.var.ys.formula_terms         :  A: A x: xs
!~ standard attributes:
tutorial.S5p.hcho.var.ys.attrs                 :  long_name units
tutorial.S5p.hcho.var.ys.attr.long_name        :  simulated retrieval
tutorial.S5p.hcho.var.ys.attr.units            :  mol m-2


!-------------------------------------------------
! end
!-------------------------------------------------

rc/cso-s5p-hcho.rc

100755 → 100644
+0 −0

File mode changed from 100755 to 100644.