File tree 2 files changed +17
-1
lines changed
2 files changed +17
-1
lines changed Original file line number Diff line number Diff line change @@ -722,7 +722,7 @@ def c_to_cpp(arg):
722
722
else :
723
723
definitions ['CHEMISTRY_ENABLED' ] = '0'
724
724
definitions ['NUMBER_CHEMICAL_SPECIES' ] = '0'
725
- makefile_options ['CHEMNET_FILE' ] = ''
725
+ makefile_options ['CHEMNET_FILE' ] = 'src/chemistry/network/none.cpp '
726
726
definitions ['CHEMNETWORK_HEADER' ] = '../chemistry/network/chem_network.hpp'
727
727
728
728
# check number of species and scalars
Original file line number Diff line number Diff line change
1
+ // ========================================================================================
2
+ // Athena++ astrophysical MHD code
3
+ // Copyright(C) 2014 James M. Stone <jmstone@princeton.edu> and other code contributors
4
+ // Licensed under the 3-clause BSD License, see LICENSE file for details
5
+ // ========================================================================================
6
+ // ! \file none.cpp
7
+ // ! \brief implementation of empty (default) chemical network
8
+
9
+ // Athena++ header
10
+ #include " ../../defs.hpp"
11
+ #include " chem_network.hpp"
12
+ #include " network.hpp"
13
+
14
+ // species names
15
+ const std::array<std::string, NSPECIES> ChemNetwork::species_names = {};
16
+
You can’t perform that action at this time.
0 commit comments