@@ -95,12 +95,11 @@ class WallBase
95
95
// ! Build the Jacobian terms specific to the flow device for the given connected
96
96
// ! reactor.
97
97
// ! @param r a pointer to the calling reactor
98
- // ! @param jacVector a vector of triplets to be added to the jacobian for the
98
+ // ! @param jacVector a vector of triplets to be added to the Jacobian for the
99
99
// ! reactor
100
100
// ! @warning This function is an experimental part of the %Cantera API and may be
101
- // ! changed
102
- // ! or removed without notice.
103
- // ! @since New in %Cantera 3.0.
101
+ // ! changed or removed without notice.
102
+ // ! @since New in %Cantera 3.1.
104
103
// !
105
104
virtual void buildReactorJacobian (ReactorBase* r, vector<Eigen::Triplet<double >>& jacVector) {
106
105
throw NotImplementedError (" WallBase::buildReactorJacobian" );
@@ -109,32 +108,29 @@ class WallBase
109
108
// ! Build the Jacobian terms specific to the flow device for the network. These
110
109
// ! terms
111
110
// ! will be adjusted to the networks indexing system outside of the reactor.
112
- // ! @param jacVector a vector of triplets to be added to the jacobian for the
111
+ // ! @param jacVector a vector of triplets to be added to the Jacobian for the
113
112
// ! reactor
114
113
// ! @warning This function is an experimental part of the %Cantera API and may be
115
- // ! changed
116
- // ! or removed without notice.
117
- // ! @since New in %Cantera 3.0.
114
+ // ! changed or removed without notice.
115
+ // ! @since New in %Cantera 3.1.
118
116
// !
119
117
virtual void buildNetworkJacobian (vector<Eigen::Triplet<double >>& jacVector) {
120
118
throw NotImplementedError (" WallBase::buildNetworkJacobian" );
121
119
}
122
120
123
- // ! Specify the jacobian terms have been calculated and should not be recalculated.
121
+ // ! Specify the Jacobian terms have been calculated and should not be recalculated.
124
122
// ! @warning This function is an experimental part of the %Cantera API and may be
125
- // ! changed
126
- // ! or removed without notice.
127
- // ! @since New in %Cantera 3.0.
123
+ // ! changed or removed without notice.
124
+ // ! @since New in %Cantera 3.1.
128
125
// !
129
- void jacobianCalculated () { m_jac_calculated = true ; };
126
+ void calculatedJacobian () { m_jac_calculated = true ; };
130
127
131
- // ! Specify that jacobian terms have not been calculated and should be recalculated.
128
+ // ! Specify that Jacobian terms have not been calculated and should be recalculated.
132
129
// ! @warning This function is an experimental part of the %Cantera API and may be
133
- // ! changed
134
- // ! or removed without notice.
135
- // ! @since New in %Cantera 3.0.
130
+ // ! changed or removed without notice.
131
+ // ! @since New in %Cantera 3.1.
136
132
// !
137
- void jacobianNotCalculated () { m_jac_calculated = false ; };
133
+ void notCalculatedJacobian () { m_jac_calculated = false ; };
138
134
139
135
protected:
140
136
ReactorBase* m_left = nullptr ;
0 commit comments