Shamrock 2025.10.0
Astrophysical Code
Loading...
Searching...
No Matches
__init__.py
1# Coala code to solve dust size distribution evolution
2# Copyright (c) 2021-2026 Maxime Lombart <maxime.lombart@cea.fr>
3# SPDX-License-Identifier: CeCILL Free Software License Agreement v2.1
4# Coala is licensed under the CeCILL 2.1 License, see LICENSE for more information
5
6# Precomputing
7# Coagulation solver (to implement in your codes)
8from .compute_coag import * # import also solver_DG.py (to port to C++)
9
10# Exact solutions
11from .exact_solutions_coag import *
12from .generate_tabflux_tabintflux import *
13from .init_massgrid import *
14
15# Iterate coagulation solver
16from .iterate_coag import * # Only for coala tests (maybe to port for tests)
17from .L2_proj import * # to port to C++ (interpolate for tests & interp rho dust from hydro)
18from .limiter import * # to port to C++ (positivity limiter)
19from .reconstruction_g import * # to port to C++ (distrib reconstruction)