kosmatau3d

The public release of the clumpy PDR code kosmatau3d (Yanitski 2023).

https://github.com/craigyanitski/kosmatau3d

Science Score: 44.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
    Found CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Academic email domains
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (15.6%) to scientific vocabulary

Keywords

astrochemistry clumpy-ism fractal-ism interstellar-medium photodissociation-regions
Last synced: 6 months ago · JSON representation ·

Repository

The public release of the clumpy PDR code kosmatau3d (Yanitski 2023).

Basic Info
Statistics
  • Stars: 1
  • Watchers: 1
  • Forks: 0
  • Open Issues: 2
  • Releases: 0
Topics
astrochemistry clumpy-ism fractal-ism interstellar-medium photodissociation-regions
Created over 3 years ago · Last pushed over 1 year ago
Metadata Files
Readme License Citation

README.md

Forks Stargazers <!-- ![License: GPL v3][(https://img.shields.io/badge/License-GPLv3-blue.svg)] --> pylint Contributors Issues GNU GPLv3 License

kosmatau3d

This is the current working version of kosmatau3d. It uses a series of sub-modules to perform most of the calculations. The reason for doing this is to reduce the memory footprint of the code to increase the overall efficiency. This also increases the maximum number of voxels that can be evaluated, since each voxel no longer owns as much memory.

Installation

using pip

Directly install from git using,

pip install git+https://github.com/CraigYanitski/kosmatau3d.git

manually

Download the repository.

bash git clone https://github.com/CraigYanitski/kosmatau3d cd kosmatau3d

Now that you are in the root directory of this repository, install it as an editable package in bash with,

bash pip install -e .

You can now keep it up-to-date using git pull in this directory.

Creating a voxel

A Voxel instance can be initialised using,

```python

from kosmatau3d import models vox = models.Voxel() ```

There are many parameters that must be specified in order to initialise and simulate the clumpy ensemble. For a detailed explanation of the properties that can be defined/accessed with a voxel instance, see the jupyter notebook in ./notebooks/voxel.ipynb. If you wish to use the pre-defined properties, you can simply run,

```python

vox.setproperties() vox.calculateemission() ```

One can then easily plot different views of the voxel emission using built-in plotting methods.

```python

vox.plot_spectrum() ```

Functionality

Single-voxel models

This is the basic component of kosmatau3d. It is made available as a self-sufficient object for use in other subgridding models. Given a volume-filling factor, mass, and FUV field, the single voxel object calculates the wavelength-dependant intensity, optical depth, absorption, and emissivity (assuming no background intensity) for a clumpy PDR ensemble. The explanation of this model is thoroughly-explained in ./notebooks/voxel.ipynb.

The objects that will modelled with this method are:

  • IC 1396
    • (Okada, Yanitski, et al. in prep) first application of directly comparing single voxels with an observational map

3D models

The full subgrid model to simulate entire 3-dimensional structures. Voxel data can be streamed into fits files and the radiative transfer portion is a self-contained module to save on computational time.

It is currently setup for the Milky Way model initially developed by Christoph Bruckmann as that will be its first application. This galactic model can also be used in a more generalised application for distant galaxies.

The objects that will modelled with this method are:

  • Milky Way
    • (Yanitski et al. in prep) an approximate description of the Milky Way emission compared to COBE-DIRBE, Planck, COBE-FIRAS, GOT C+, CfA, Mopra, ThrUMMS, and SEDIGISM data

Code Corrections

The major changes to the functionality of the kosmatau3d model over the KOSMA-tau-3D model of Silke et al. (2017) are described in the document ./docs/treatise.pdf, and the major changes to the Milky Way model will also appear in the upcoming Yanitski et al. (2024) paper. Most of the functionality is explained in Ch. III and IV in Yanitski (2023). There will be other documents to state the other various corrections and developments made.

Developmental Progress

base development

  • 3D model
    • [x] Correct voxel-averaged intensity calculation
    • [x] Ensure 3D model saves relevant data
    • [ ] implement multiprocessing
    • [x] Modify single-voxel instance to calculate a column when $f_V > 1$
    • [ ] allow for arbitrary $f_V$ $(<1)$
  • Radiative transfer
    • [x] Ensure correct calculation of sythetic datacube
    • [x] implement multiprocessing
    • [x] optimise
    • [x] Implement opacity map in radiative transfer calculation
    • [ ] Implement FUV absorption calculation in full 3D model
    • [ ] Modify the radiativeTransfer module to work for arbitrary geometry
  • Miscellaneous
    • [x] Include submodule to explore KOSMA-$\tau$ and kosmatau3d properties
    • [x] Include submodule to compare observational data with synthetic datacubes
    • [x] fix regridding of observational error maps
    • [ ] Implement function to mimic two-layer model (aka two-voxel model)
    • [ ] Implement function to create voxel grid (functions by Yoko Okada)
    • [ ] have function fit observational data
    • [ ] Include submodule covering the Mathematica routines developed by Markus Röllig
    • [ ] Develop the code testing suite
    • [ ] Fully document the code using sphinx
    • [ ] Implement CI/CD

future development

  • [x] Allow pickling of interpolation functions for faster debugging of the single-voxel model
  • [ ] Utilise cython to improve code efficiency
  • [ ] Implement numba more fully to optimise the computation time
    • [ ] use this to parallelise the code
  • [ ] Create a GUI to make it easier to setup/alter the model
  • [ ] Implement recursion in radiative transfer calculation

Owner

  • Name: Craig Yanitski
  • Login: CraigYanitski
  • Kind: user
  • Location: Köln, Germany
  • Company: Universität zu Köln

Citation (CITATION.cff)

# This CITATION.cff file was generated with cffinit.
# Visit https://bit.ly/cffinit to generate yours today!

cff-version: 1.2.0
title: kosmatau3d
message: >-
  If you use this software, please cite it using the
  metadata from this file.
type: software
authors:
  - given-names: Craig Nicholas
    family-names: Yanitski
    email: yanitski@ph1.uni-koeln.de
    affiliation: Universität zu Köln
    orcid: 'https://orcid.org/0009-0009-3294-6320'
repository-code: 'https://github.com/CraigYanitski/kosmatau3d'
keywords:
  - photodissociation region (PDR)
  - Interstellar medium (ISM)
  - fractal structure
  - numerical modelling
license: GPL-3.0

GitHub Events

Total
  • Issues event: 1
  • Watch event: 1
  • Create event: 1
Last Year
  • Issues event: 1
  • Watch event: 1
  • Create event: 1