obs_config_SCI_WIDE_phot.yaml 2.38 KB
Newer Older
Fang Yuedong's avatar
Fang Yuedong committed
1
2
3
4
5
6
7
8
9
10
11
---
###############################################
#
#  Configuration file for CSST simulation
#  For single exposure type:
#                SCI-WIDE
#  CSST-Sim Group, 2024/01/08
#
###############################################

# Observation type
12
13
obs_type: "SCI"
obs_type_code: "101"
14
obs_id: "00000001" # this setting will only be used if pointing list file is not given
Fang Yuedong's avatar
Fang Yuedong committed
15
16

# Define list of chips
Zhang Xin's avatar
Zhang Xin committed
17
run_chips: [8]
Fang Yuedong's avatar
Fang Yuedong committed
18
19
20
21
22

# Define observation sequence
call_sequence:
  # Accumulate fluxes from objects
  scie_obs:
23
24
25
    # [Optional]: exposure time of the pointing will be used as default.
    # Set it here is you want to override the default
    # exptime: 150. # [s] 
Fang Yuedong's avatar
Fang Yuedong committed
26
27
28
29
30
    shutter_effect: YES
    flat_fielding: YES
    field_dist: YES
  # Accumulate fluxes from sky background
  sky_background:
31
32
33
    # [Optional]: exposure time of the pointing will be used as default.
    # Set it here is you want to override the default
    # exptime: 150. # [s]
Fang Yuedong's avatar
Fang Yuedong committed
34
35
    shutter_effect: YES
    flat_fielding: YES
36
    enable_straylight_model: YES
37
38
39
    # flat_level: set the total skybackground value (e-) in the exptime,if none,set null, or delete the key
    # flat_level_filt: the vale of "flat_level" is in the filter "flat_level_filt", can set NUV, u, g, r, i, z, y, if 
    # none,set null,or delete the key
40
41
    flat_level: null
    flat_level_filt: null
Fang Yuedong's avatar
Fang Yuedong committed
42
43
44
  # Apply PRNU to accumulated photons
  PRNU_effect: {}
  # Accumulate photons caused by cosmic rays
45
46
47
48
  cosmic_rays: 
    # [Optional]: exposure time of the pointing will be used as default.
    # Set it here is you want to override the default
    # exptime: 150. # [s]
Fang Yuedong's avatar
Fang Yuedong committed
49
50
  # Add Poission noise and dark current
  poisson_and_dark:
51
52
53
    # [Optional]: exposure time of the pointing will be used as default.
    # Set it here is you want to override the default
    # exptime: 150. # [s]
Fang Yuedong's avatar
Fang Yuedong committed
54
55
56
57
58
59
60
61
62
63
64
65
    add_dark: YES
  # Simulate brighter fatter effects
  bright_fatter: {}
  # Add detector defects: hot/warm pixels, bad columns
  detector_defects:
    hot_pixels: YES
    dead_pixels: YES
    bad_columns: YES
  # Apply response nonlinearity
  nonlinearity: {}
  # Apply CCD Saturation & Blooming
  blooming: {}
66
  # # Run CTE simulation
Fang Yuedong's avatar
Fang Yuedong committed
67
68
69
70
71
72
73
74
75
76
77
  CTE_effect: {}
  # Add prescan and overscan
  prescan_overscan: {}
  # Add bias
  bias:
    bias_16channel: YES
  # Add readout noise
  readout_noise: {}
  # Apply gain
  gain:
    gain_16channel: YES
78
  # Output the final image
Zhang Xin's avatar
Zhang Xin committed
79
80
  quantization_and_output:
    format_output: YES
Fang Yuedong's avatar
Fang Yuedong committed
81
...