Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ set(partmclib_SOURCES condense_solver.c aero_state.F90 integer_varray.F90 intege
gas_state.F90 coagulation.F90 exact_soln.F90 coagulation_dist.F90 coag_kernel.F90 spec_line.F90
rand.F90 aero_particle.F90 aero_particle_array.F90 mpi.F90 netcdf.F90 aero_info.F90
aero_info_array.F90 nucleate.F90 condense.F90 fractal.F90 chamber.F90 camp_interface.F90
photolysis.F90 aero_component.F90
photolysis.F90 aero_component.F90 tchem_interface.F90
)
add_prefix(gitmodules/partmc/src/ partmclib_SOURCES)
list(APPEND partmclib_SOURCES src/spec_file_pypartmc.F90 src/sys.F90)
Expand Down
2 changes: 1 addition & 1 deletion gitmodules/partmc
Submodule partmc updated 79 files
+15 −0 .github/workflows/tchem.yml
+81 −3 CMakeLists.txt
+177 −0 Dockerfile.tchem
+1 −0 scenarios/1_urban_plume/urban_plume.spec
+1 −0 scenarios/2_urban_plume2/urban_plume2.spec
+1 −0 scenarios/3_condense/cond_template.spec
+1 −0 scenarios/4_chamber/chamber.spec
+1 −0 scenarios/5_coag_brownian/example.spec
+1 −0 scenarios/6_camp/camp.spec
+1 −1 src/camp_interface.F90
+22 −0 src/env_state.F90
+1 −1 src/extract_aero_particles.F90
+10 −18 src/gas_state.F90
+7 −1 src/partmc.F90
+49 −7 src/run_part.F90
+1 −1 src/scenario.F90
+309 −0 src/tchem_interface.F90
+13 −0 src/util.F90
+2 −1 test/additive/run_part.spec
+2 −1 test/average/run_part.spec
+2 −1 test/bidisperse/run_part.spec
+2 −1 test/brownian/run_part.spec
+1 −0 test/camp/camp.spec
+2 −1 test/condense/run_part.spec
+2 −1 test/emission/run_part.spec
+2 −1 test/fractal/run_part_brown_cont_df_1_8_restart.spec
+2 −1 test/fractal/run_part_brown_cont_df_1_8_upto1000s.spec
+2 −1 test/fractal/run_part_brown_free_df_2_4_restart.spec
+2 −1 test/fractal/run_part_brown_free_df_2_4_upto1000s.spec
+2 −1 test/loss/run_chamber_part.spec
+2 −1 test/loss/run_constant_part.spec
+2 −1 test/loss/run_drydep_part.spec
+2 −1 test/loss/run_volume_part.spec
+2 −1 test/mixing_state/run_part.spec
+2 −1 test/mosaic/run_part.spec
+2 −1 test/mosaic/run_part_restarted.spec
+2 −1 test/nucleate/run_part.spec
+2 −1 test/parallel/run_part_parallel_dist.spec
+2 −1 test/parallel/run_part_parallel_dist_single.spec
+2 −1 test/parallel/run_part_parallel_mix.spec
+2 −1 test/parallel/run_part_serial.spec
+2 −1 test/sedi/run_part.spec
+8 −0 test/tchem/README
+6 −0 test/tchem/aero_back.dat
+2 −0 test/tchem/aero_back_comp.dat
+0 −0 test/tchem/aero_back_dist.dat
+4 −0 test/tchem/aero_data.dat
+6 −0 test/tchem/aero_emit.dat
+2 −0 test/tchem/aero_emit_comp.dat
+0 −0 test/tchem/aero_emit_dist.dat
+2 −0 test/tchem/aero_init_comp.dat
+6 −0 test/tchem/aero_init_dist.dat
+2,614 −0 test/tchem/chem.yaml
+2,840 −0 test/tchem/config_cb05cl_ae5.yaml
+129 −0 test/tchem/config_chapman.yaml
+7 −0 test/tchem/gas_back.dat
+7 −0 test/tchem/gas_data.dat
+5 −0 test/tchem/gas_emit_empty.dat
+37 −0 test/tchem/gas_init_cb05cl_ae5.dat
+7 −0 test/tchem/gas_init_chapman.dat
+4 −0 test/tchem/height.dat
+4 −0 test/tchem/pressure_cb05cl_ae5.dat
+4 −0 test/tchem/pressure_chapman.dat
+50 −0 test/tchem/run_part_cb05cl_ae5.spec
+50 −0 test/tchem/run_part_chapman.spec
+9 −0 test/tchem/solver_cb05cl_ae5.yaml
+9 −0 test/tchem/solver_chapman.yaml
+11 −0 test/tchem/tchem_cb05cl_ae5_gas_saved.txt
+1,001 −0 test/tchem/tchem_chapman_gas_saved.txt
+4 −0 test/tchem/temp_cb05cl_ae5.dat
+4 −0 test/tchem/temp_chapman.dat
+14 −0 test/tchem/test_tchem_1.sh
+14 −0 test/tchem/test_tchem_2.sh
+2 −1 test/weighting/run_part_flat.spec
+2 −1 test/weighting/run_part_flat_source.spec
+2 −1 test/weighting/run_part_flat_specified.spec
+2 −1 test/weighting/run_part_nummass.spec
+2 −1 test/weighting/run_part_nummass_source.spec
+2 −1 test/weighting/run_part_nummass_specified.spec
Loading