obs_config_SCI_WIDE_phot.yaml 1.47 KB
Newer Older
Fang Yuedong's avatar
Fang Yuedong committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
###############################################
#
#  Configuration file for CSST simulation
#  For single exposure type:
#                SCI-WIDE
#  CSST-Sim Group, 2024/01/08
#
###############################################

# Observation type
obs_type: "SCIE"

# Define list of chips
run_chips: [6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 22, 23, 24, 25]

# Define observation sequence
call_sequence:
  # Accumulate fluxes from objects
  scie_obs:
    exptime: 150. # [s]
    shutter_effect: YES
    flat_fielding: YES
    field_dist: YES
  # Accumulate fluxes from sky background
  sky_background:
    exptime: 150. # [s]
    shutter_effect: YES
    flat_fielding: YES
30
    enable_straylight_model: YES
Fang Yuedong's avatar
Fang Yuedong committed
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
  # Apply PRNU to accumulated photons
  PRNU_effect: {}
  # Accumulate photons caused by cosmic rays
  cosmic_rays: {}
  # Add Poission noise and dark current
  poisson_and_dark:
    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: {}
49
  # # Run CTE simulation
Fang Yuedong's avatar
Fang Yuedong committed
50
51
52
53
54
55
56
57
58
59
60
  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
61
62
  # Output the final image
  quantization_and_output: {}
Fang Yuedong's avatar
Fang Yuedong committed
63
...