run_sim.py 3.58 KB
Newer Older
1
from ObservationSim.ObservationSim import Observation
2
from ObservationSim._util import parse_args, make_run_dirs, generate_pointing_list
3
from pkg_resources import get_distribution
4
5
import os
import yaml
6
import shutil
7
import datetime
8
9
10
11

import gc
gc.enable()

Fang Yuedong's avatar
Fang Yuedong committed
12
def run_sim(Catalog):
13
14
    """
    Main method for simulation call.
15
16
17
18
19
20
21
22
23

    Parameters
    ----------
    Catalog : Class
        a catalog class which is inherited from ObservationSim.MockObject.CatalogBase 
    
    Returns
    ----------
        None
24
    """
25
26
27
28
29
30
    # Get version of CSSTSim Package
    __version__ = get_distribution("CSSTSim").version

    # Get run datetime
    now = datetime.datetime.now()

31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
    args = parse_args()
    if args.config_dir is None:
        args.config_dir = ''
    args.config_dir = os.path.abspath(args.config_dir)
    args.config_file = os.path.join(args.config_dir, args.config_file)
    with open(args.config_file, "r") as stream:
        try:
            config = yaml.safe_load(stream)
            for key, value in config.items():
                print (key + " : " + str(value))
        except yaml.YAMLError as exc:
            print(exc)

    # Overwrite the data and working directories
    # if they are specified by the command line inputs
    if args.data_dir is not None:
        config['data_dir'] = args.data_dir
    if args.work_dir is not None:
        config['work_dir'] = args.work_dir

51
52
53
54
55
56
    # Some default values
    if "bias_16channel" not in config:
        config["bias_16channel"] = False
    if "gain_16channel" not in config:
        config["gain_16channel"] = False

57
    # Generate lists pointings based on the input pointing list (or default 
58
59
    # pointing RA, DEC) and "config["obs_setting"]["run_pointings"]".
    # "config['obs_setting']['np_cal']"" is the number of CAL pointings which will be 
60
    # appended to the front.
61
    # NOTE: the implementation of gerenating time_stamps is temporary.
62
    pointing_list = generate_pointing_list(config=config, pointing_filename=config['pointing_file'], data_dir=config['pointing_dir'])
63
64

    # Make the main output directories
65
    run_dir = make_run_dirs(work_dir=config['work_dir'], run_name=config['run_name'], pointing_list=pointing_list)
66
67
    
    # Copy the config file to output directory & Write Run metadata
68
    shutil.copy(args.config_file, run_dir)
69
70
71
72
73
74
75
76
77
78
    run_meta = os.path.join(run_dir, "run_metadata.yaml")
    with open(run_meta, "w") as config_out:
        config_out.write("\n")
        config_out.write("###############################################\n")
        config_out.write("CSSTSim_version: \"%s\"\n"%__version__)
        date_str = datetime.datetime.strftime(now, '%m/%d/%Y')
        time_str = datetime.datetime.strftime(now, '%H:%M:%S')
        config_out.write("Run_date: \"%s\"\n"%date_str)
        config_out.write("Run_time: \"%s\"\n"%time_str)
        config_out.write("###############################################\n")
79
80
81
82
83
84

    # Initialize the simulation
    obs = Observation(config=config, Catalog=Catalog, work_dir=config['work_dir'], data_dir=config['data_dir'])
    
    # Run simulation
    obs.runExposure_MPI_PointingList(
85
        pointing_list=pointing_list,
86
87
88
89
        use_mpi=config["run_option"]["use_mpi"],
        chips=config["obs_setting"]["run_chips"])

if __name__=='__main__':
90
91
92
93
    # To run with the example input catalog
    # from Catalog.Catalog_example import Catalog_example
    # run_sim(Catalog=Catalog_example)
    
94
95
96
97
98
99
100
    # # To run cycle-3 simulation
    # from Catalog.C3Catalog import C3Catalog
    # run_sim(Catalog=C3Catalog)

    # To run calibration field NGP simulation
    from Catalog.NGPCatalog import NGPCatalog
    run_sim(Catalog=NGPCatalog)