Skip to content

Commit

Permalink
v3.17.17
Browse files Browse the repository at this point in the history
version used in the Pichelstorfer autoCONSTRAINT description paper
  • Loading branch information
simonom committed Nov 28, 2024
1 parent ca47c9b commit fadecc4
Show file tree
Hide file tree
Showing 1,286 changed files with 157,390 additions and 343,531 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file removed Images_for_readme/v4_to_v5_effect_example.png
Binary file not shown.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
exclude __pycache__
exclude umansysprop
include README.md
Binary file modified PyCHAM/.DS_Store
Binary file not shown.
74 changes: 0 additions & 74 deletions PyCHAM/J_value_file_open.py

This file was deleted.

61 changes: 26 additions & 35 deletions PyCHAM/ODE_solver_break_relevant_fluxes.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##########################################################################################
# #
# Copyright (C) 2018-2024 Simon O'Meara : simon.omeara@manchester.ac.uk #
# Copyright (C) 2018-2022 Simon O'Meara : simon.omeara@manchester.ac.uk #
# #
# All Rights Reserved. #
# This file is part of PyCHAM #
Expand All @@ -14,46 +14,37 @@
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more #
# details. #
# #
# You should have received a copy of the GNU General Public License along with #
# PyCHAM. If not, see <http://www.gnu.org/licenses/>. #
# #
# #
# You should have received a copy of the GNU General Public License along with #
# PyCHAM. If not, see <http://www.gnu.org/licenses/>. #
# #
##########################################################################################
# File created at 2024-11-12 13:44:01.256094 by ode_brk_err_mess
# File created at 2022-09-08 10:23:30.769217 by ode_brk_err_mess

Gas and particle-phase concentrations of water prior to solver (molecules/cm3) with size bin numbers starting at 1:
Gas: 1.3060546374485062e+17
Size bin 1: 0.10987263238457909
Size bin 2: 0.0
Size bin 3: 0.0
Size bin 4: 0.0
Size bin 5: 0.0
Size bin 6: 0.0
Size bin 7: 4549410177626.267
Size bin 8: 0.0
Size bin 9: 0.0
Size bin 10: 0.0
Size bin 11: 0.0
Size bin 12: 0.0
Gas: 2.889287438226125e+17
Size bin 1: 0.00433748478103535
Size bin 2: 28384.67701926618
Size bin 3: 8068035.437009814
Size bin 4: 1468627264.573658
Size bin 5: 221658626354.8917
Size bin 6: 24878984351624.465

Gas and particle-phase concentrations of water following solver (molecules/cm3) with size bin numbers starting at 1:
Gas: 1.3060546374485062e+17
Size bin 1: -0.033106772570678664
Size bin 2: 0.0
Size bin 3: 0.0
Size bin 4: 0.0
Size bin 5: 0.0
Size bin 6: 0.0
Size bin 7: 4549390630339.442
Size bin 8: 0.0
Size bin 9: 0.0
Size bin 10: 0.0
Size bin 11: 0.0
Size bin 12: 0.0
Gas: 2.889287438226125e+17
Size bin 1: -0.2139812572211136
Size bin 2: 28700.498194842992
Size bin 3: 8068254.056466927
Size bin 4: 1468627304.7700033
Size bin 5: 221658626358.43076
Size bin 6: 24878984351621.285

Gas-phase reaction fluxes with equation numbers starting at 1 (# molecules/cm3/s):
Eq. 1 reac: [1.23361992e+08]
Eq. 1 prod: [1.23361992e+08]

Wall not turned on so no gas-wall partitioning fluxes reported

Gas-particle partitioning fluxes (molecules/cm3/s) for each component with negative concentrations following call to ODE solver, where a negative flux represents loss from the gas-phase and positive represents gain to the gas-phase. For each component, flux to the smallest size bin is the first value, and flux to the largest size bin is the final value.
H2O: [ 2.51174382e+07 -0.00000000e+00 -0.00000000e+00 -0.00000000e+00
-0.00000000e+00 -0.00000000e+00 3.43390553e+15 -0.00000000e+00
-0.00000000e+00 -0.00000000e+00 -0.00000000e+00 -0.00000000e+00]
H2O: [ 4.37542801e+05 -6.32951988e+08 -4.38145478e+08 -8.05593754e+07
-7.09279567e+06 6.37618702e+06]
Binary file removed PyCHAM/PyCHAM_logo_transparent.png
Binary file not shown.
86 changes: 86 additions & 0 deletions PyCHAM/RO2_indices.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
##########################################################################################
# #
# Copyright (C) 2018-2022 Simon O'Meara : simon.omeara@manchester.ac.uk #
# #
# All Rights Reserved. #
# This file is part of PyCHAM #
# #
# PyCHAM is free software: you can redistribute it and/or modify it under #
# the terms of the GNU General Public License as published by the Free Software #
# Foundation, either version 3 of the License, or (at your option) any later #
# version. #
# #
# PyCHAM is distributed in the hope that it will be useful, but WITHOUT #
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS #
# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more #
# details. #
# #
# You should have received a copy of the GNU General Public License along with #
# PyCHAM. If not, see <http://www.gnu.org/licenses/>. #
# #
##########################################################################################
'''generates an array of component indices for the components that constitute a particular component type'''
# for peroxy radicals makes a two column array, with the first column giving the index of components
# included in the peroxy radical list and the
# second column containing the index based on where the RO2 occurs in comp_namelist (i.e., relative
# to all other components from the chemical scheme)

import numpy as np

def RO2_indices(RO2_names, self):

# inputs: -----------------------------------------------------------------------------------------
# self.comp_namelist - all chemical scheme names
# RO2_names - all RO2 (non-HOM) names
# self - reference to PyCHAM
# ---------------------------------------------------------------------------------------------------

# store the names of RO2 species which are present in the equation file
# get a list of INDICES of RO2 that present in the equation file
# (or total species dict)
# empty list for RO2_indices
RO2_indices0 = []
self.RO2_indices = []

for name in RO2_names:

if (name in self.comp_namelist):
# get the RO2 index
index0 = RO2_names.index(name)
RO2_indices0.append(index0)
# get the self.comp_namelist index for this RO2 species
index1 = self.comp_namelist.index(name)
self.RO2_indices.append(index1)

# ensure elements in RO2_indices are integer (iterable)
RO2_indices0 = (np.asarray(RO2_indices0, dtype=int)).reshape(-1, 1)
self.RO2_indices = (np.asarray(self.RO2_indices, dtype=int)).reshape(-1, 1)
self.RO2_indices = np.hstack((RO2_indices0, self.RO2_indices))

return(self)

def HOMRO2_indices(self):

# inputs: -----------------------------------------------------------------------------------------
# self.comp_namelist - all chemical scheme names
# ---------------------------------------------------------------------------------------------------

# store the names of HOMRO2 species which are present in the equation file
# get a list of INDICES of RO2 that present in the equation file
# (or total species dict)
# empty list for HOMRO2 indices
self.HOMRO2_indices = []

cin = 0 # count on components
for name in self.comp_namelist: # loop through names of all components

if ('API_' in name) or ('api_' in name):
if ('RO2 in name'):
# store the HOMRO2 index
self.HOMRO2_indices.append(cin)

cin += 1 # count on components
# ensure elements in HOMRO2_indices are integer (iterable)
self.HOMRO2_indices = (np.asarray(self.HOMRO2_indices, dtype=int)).reshape(-1, 1)

return(self)
2 changes: 1 addition & 1 deletion PyCHAM/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##########################################################################################
# #
# Copyright (C) 2018-2023 Simon O'Meara : simon.omeara@manchester.ac.uk #
# Copyright (C) 2018-2022 Simon O'Meara : simon.omeara@manchester.ac.uk #
# #
# All Rights Reserved. #
# This file is part of PyCHAM #
Expand Down
2 changes: 1 addition & 1 deletion PyCHAM/__main__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
##########################################################################################
# #
# Copyright (C) 2018-2023 Simon O'Meara : simon.omeara@manchester.ac.uk #
# Copyright (C) 2018-2022 Simon O'Meara : simon.omeara@manchester.ac.uk #
# #
# All Rights Reserved. #
# This file is part of PyCHAM #
Expand Down
Binary file removed PyCHAM/__pycache__/J_value_file_open.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/RO2_indices.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/RO2_indices.cpython-311.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/RO2_indices.cpython-39.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/__main__.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/__main__.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/__main__.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/__main__.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/accom_coeff_calc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/accom_coeff_calc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/accom_coeff_calc.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/act_coeff_update.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/act_coeff_update.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/act_coeff_update.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/aq_mat_prep.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/aq_mat_prep.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/aq_mat_prep.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/aq_mat_prep.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/cham_up.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/cham_up.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/cham_up.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/cham_up.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/chem_sch_SMILES.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/chem_sch_SMILES.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/chem_sch_SMILES.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/coag.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/coag.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/compl_evap.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/compl_evap.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/consumption.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/consumption.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/consumption.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file added PyCHAM/__pycache__/def_mod_var.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/def_mod_var.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/def_mod_var.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/def_mod_var.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/diff_vol_est.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/diff_vol_est.cpython-312.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/dydt_rec.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/dydt_rec.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/dydt_rec.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/dydt_rec.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/eqn_interr.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_interr.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/eqn_interr.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_interr.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/eqn_pars.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_pars.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/eqn_pars.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_pars.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/eqn_pars_skipper.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_pars_skipper.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/eqn_pars_skipper.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/eqn_pars_skipper.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/err_log_code.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/err_log_code.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/err_log_code.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/err_log_code.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/fl_reg_determ.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/fl_reg_determ.cpython-312.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/formatting.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/formatting.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/formatting.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/formatting.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/fullmov.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/fullmov.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/group_indices.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/group_indices.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/group_indices.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/gui.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/gui.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/gui.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/gui.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/hyst_eq.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/hyst_eq.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/hyst_eq.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/hyst_eq.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/init_conc.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/init_conc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/init_conc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/init_conc.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/init_water_partit.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/init_water_partit.cpython-312.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/jac_setup.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/jac_setup.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/jac_setup.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/jac_setup.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/jac_up.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/jac_up.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/jac_up.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/lamp_photo.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/lamp_photo.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/lamp_photo.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/lamp_photo.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/middle.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/middle.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/middle.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/middle.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mod_var_read.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/mod_var_read.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mod_var_read.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mod_var_up.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/mod_var_up.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mod_var_up.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/mov_cen.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mov_cen.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/mov_cen.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/mov_cen_water_eq.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/mov_cen_water_eq.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file added PyCHAM/__pycache__/nuc.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/nuc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/nuc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/nuc.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/obs_file_open.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/obs_file_open.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_brk_err_mess.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_brk_err_mess.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_brk_err_mess.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/ode_solv.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_solv.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_solv.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_solv.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/ode_solv_wat.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_solv_wat.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_solv_wat.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_solv_wat.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/ode_updater.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_updater.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_updater.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ode_updater.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_updater_su.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ode_updater_su.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/part_nsd.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/part_nsd.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/part_nsd.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/part_nsd.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/part_prop.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/part_prop.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/part_prop.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/partit_var.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/partit_var.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/partit_var.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/partit_var.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/partit_var_prep.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/partit_var_prep.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/partit_var_prep.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/photo_num.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/photo_num.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/photo_num.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/photo_num.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/photolysisRates.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/photolysisRates.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/photolysisRates.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/plotter.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/plotter.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/plotter_CIMS.cpython-310.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/plotter_CIMS.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_CIMS.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_atom_frac.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/plotter_cham_env.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_cham_env.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_cham_env.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_ct.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_ct.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_ct.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/plotter_gp.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/plotter_gp.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_gp.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/plotter_gp.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_nsd.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_nsd.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_pp.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_pp.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_pp.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_wp.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_wp.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_wp.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_wp_part.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/plotter_xls.cpython-310.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_xls.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/plotter_xls.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/pp_dursim.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/pp_dursim.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/pp_dursim.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/pp_dursim.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/pp_intro.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/pp_intro.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/pp_intro.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/pp_intro.cpython-39.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/pp_water_equil.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/prop_calc.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/prop_calc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/prop_calc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/prop_calc.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/rate_coeffs.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rate_coeffs.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/rate_coeffs.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rate_coeffs.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/rec.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rec.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/rec.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rec.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/rec_prep.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rec_prep.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/rec_prep.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rec_prep.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/retr_out.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/retr_out.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/retr_out.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/retr_out.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/reyn_num.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/reyn_num.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/reyn_num.cpython-312.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/rrc_calc.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rrc_calc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/rrc_calc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/rrc_calc.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/save.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/save.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/save.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/sch_interr.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/sch_interr.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/sch_interr.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/sch_interr.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file removed PyCHAM/__pycache__/sens2mm.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/size_distr.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/size_distr.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/size_distr.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/size_distr.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/tot_in.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/tot_in.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/tot_in.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/tot_in.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ui_check.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/ui_check.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/ui_check.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/user_input.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/user_input.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/user_input.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/v_check.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/v_check.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/v_check.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/var_checker.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/var_checker.cpython-312.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/var_checker.cpython-39.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/vol_contr_analys.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/vol_contr_analys.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/vol_contr_analys.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/volat_calc.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/volat_calc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/volat_calc.cpython-312.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/volat_calc.cpython-39.pyc
Binary file not shown.
Binary file added PyCHAM/__pycache__/wallloss.cpython-310.pyc
Binary file not shown.
Binary file modified PyCHAM/__pycache__/wallloss.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/wallloss.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/water_calc.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/water_calc.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file modified PyCHAM/__pycache__/wk_int.cpython-311.pyc
Binary file not shown.
Binary file removed PyCHAM/__pycache__/wk_int.cpython-312.pyc
Binary file not shown.
Loading

0 comments on commit fadecc4

Please sign in to comment.