Research Blog
Welcome to my Research Blog.
This is mostly meant to document what I am working on for myself, and to communicate with my colleagues. It is likely filled with errors!
This project is maintained by ndrakos
I plan to generate COSMOS-Web MIRI images using MIRISim. COSMOS-Web will observe in MIRI F770W with about 0.2 deg^2 coverage.
These are my initial notes on how to use MIRISim.
I installed MIRISim according to these instructions. Note that MIRISim requires anaconda to install.
I download mirisim_install.bash
, and modified the MIRISIM_ROOT environment variable to point to the directory I wanted this installed to. Then, I ran this using:
chmod +x mirisim_install.bash
./mirisim_install.bash
Once this finished, it will tell you the setup commands to export the MIRISim variables to your terminal. I added these to my bash_profile as follows:
export MIRISIM_ROOT=/Users/nicoledrakos/Documents/Software/mirisim/mirisim
export PYSYN_CDBS=$MIRISIM_ROOT/cdbs/
Then conda activate mirisim
will allow you to use this package.
There are extensive notes on how to use MIRISim here. MIRI has imager (IMA), medium-resolution spectrometer (MRS) and low-resolution spectrometer (LRS). I will only be interested in the imager
The general work-flow within MIRISim consists of the following steps:
There are three possible input files
You can generate default configuration files that are commented using the following code:
from mirisim import MiriSimulation
MiriSimulation.generate_configfiles()
The simulation input file includes user definable parameters, including: pointing, whether to use imager/LRS/MRS, Filter or MRS channel to simulate, exposures, integrations and number of frames, detector mode, dither patterns.
This can include background emission, point sources and galaxies
MIRISim will create a new folder in the working directory, based on the date and time the simulation was run, ending in _mirisim
In addition to copies of the input files and a log file, the folder will contain three directories
I went through the “Walk through of MIRISim (Imager)”. This showed an example scene, simulation configuration and how to run. This worked as expected!
Next I need to