Skip to content

Commit d4bc33b

Browse files
committed
changed names
1 parent 5274fda commit d4bc33b

25 files changed

+29
-29
lines changed

src/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ set( hpcReact_headers
33
common/macros.hpp
44
common/CArrayWrapper.hpp
55
reactions/base/ReactionsParametersBase.hpp
6-
reactions/geochemistry/EquilibriumReactions.hpp
7-
reactions/geochemistry/KineticReactions.hpp
8-
reactions/geochemistry/ReactionsBase.hpp
9-
reactions/geochemistry/Parameters.hpp
10-
reactions/geochemistry/ParametersPredefined.hpp
6+
reactions/bulkGeneric/EquilibriumReactions.hpp
7+
reactions/bulkGeneric/KineticReactions.hpp
8+
reactions/bulkGeneric/ReactionsBase.hpp
9+
reactions/bulkGeneric/Parameters.hpp
10+
reactions/bulkGeneric/ParametersPredefined.hpp
1111
)
1212

1313
set( hpcReact_sources
@@ -53,7 +53,7 @@ target_include_directories( hpcReact
5353
# hpcReact_add_code_checks( PREFIX hpcReact
5454
# EXCLUDES "blt/*" )
5555

56-
add_subdirectory( reactions/geochemistry/unitTests )
56+
add_subdirectory( reactions/bulkGeneric/unitTests )
5757

5858

5959
HPCReact_add_code_checks( PREFIX hpcReact

src/reactions/geochemistry/EquilibriumReactions.hpp renamed to src/reactions/bulkDebyeHuckel/EquilibriumReactions.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
namespace hpcReact
1111
{
12-
namespace geochemistry
12+
namespace bulkGeneric
1313
{
1414

1515
template< typename REAL_TYPE,
@@ -98,7 +98,7 @@ class EquilibriumReactions : public ReactionsBase< REAL_TYPE,
9898

9999
};
100100

101-
} // namespace geochemistry
101+
} // namespace bulkGeneric
102102
} // namespace hpcReact
103103

104104
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/EquilibriumReactions_impl.hpp renamed to src/reactions/bulkDebyeHuckel/EquilibriumReactions_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//#include "lapack.h"
77
namespace hpcReact
88
{
9-
namespace geochemistry
9+
namespace bulkGeneric
1010
{
1111

1212
template< typename REAL_TYPE,
@@ -326,7 +326,7 @@ EquilibriumReactions< REAL_TYPE,
326326

327327
}
328328

329-
} // namespace geochemistry
329+
} // namespace bulkGeneric
330330
} // namespace hpcReact
331331

332332
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/KineticReactions.hpp renamed to src/reactions/bulkDebyeHuckel/KineticReactions.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
namespace hpcReact
77
{
8-
namespace geochemistry
8+
namespace bulkGeneric
99
{
1010

1111
template< typename REAL_TYPE,
@@ -44,7 +44,7 @@ class KineticReactions : public ReactionsBase< REAL_TYPE,
4444

4545
};
4646

47-
} // namespace geochemistry
47+
} // namespace bulkGeneric
4848
} // namespace hpcReact
4949

5050
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/KineticReactions_impl.hpp renamed to src/reactions/bulkDebyeHuckel/KineticReactions_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace hpcReact
55
{
6-
namespace geochemistry
6+
namespace bulkGeneric
77
{
88

99
// function to the reaction rate. Includes impact of temperature, concentration, surface area, volume fraction and porosity
@@ -63,7 +63,7 @@ KineticReactions< REAL_TYPE,
6363
}
6464
}
6565

66-
} // namespace geochemistry
66+
} // namespace bulkGeneric
6767
} // namespace hpcReact
6868

6969
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/Parameters.hpp renamed to src/reactions/bulkDebyeHuckel/Parameters.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace hpcReact
55
{
6-
namespace geochemistry
6+
namespace bulkGeneric
77
{
88

99
template< typename REAL_TYPE,
@@ -132,5 +132,5 @@ struct Parameters
132132
}
133133
};
134134

135-
} // namespace geochemistry
135+
} // namespace bulkGeneric
136136
} // namespace hpcReact

src/reactions/liquidElectrolyteBatteryChemistry/ParametersPredefined.hpp renamed to src/reactions/bulkDebyeHuckel/ParametersPredefined.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace hpcReact
66
{
7-
namespace geochemistry
7+
namespace bulkGeneric
88
{
99

1010
constexpr
@@ -55,5 +55,5 @@ Parameters< double, int, 7, 11, 2 > chemicalReactionsParams =
5555
1.0
5656
};
5757

58-
} // namespace geochemistry
58+
} // namespace bulkGeneric
5959
} // namespace hpcReact

src/reactions/geochemistry/ReactionsBase.hpp renamed to src/reactions/bulkDebyeHuckel/ReactionsBase.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
namespace hpcReact
99
{
10-
namespace geochemistry
10+
namespace bulkGeneric
1111
{
1212

1313

@@ -45,7 +45,7 @@ class ReactionsBase
4545
REAL_TYPE & ionicStrength );
4646
};
4747

48-
} // namespace geochemistry
48+
} // namespace bulkGeneric
4949
} // namespace hpcReact
5050

5151
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/ReactionsBase_impl.hpp renamed to src/reactions/bulkDebyeHuckel/ReactionsBase_impl.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace hpcReact
66
{
7-
namespace geochemistry
7+
namespace bulkGeneric
88
{
99

1010
template< typename REAL_TYPE,
@@ -85,7 +85,7 @@ void ReactionsBase< REAL_TYPE,
8585
}
8686
}
8787

88-
} // namespace geochemistry
88+
} // namespace bulkGeneric
8989
} // namespace hpcReact
9090

9191
#include "common/macrosCleanup.hpp"

src/reactions/geochemistry/legacy/EquilibriumReactions.cpp renamed to src/reactions/bulkDebyeHuckel/legacy/EquilibriumReactions.cpp

File renamed without changes.

0 commit comments

Comments
 (0)