@@ -95,12 +95,11 @@ class WallBase
9595 // ! Build the Jacobian terms specific to the flow device for the given connected
9696 // ! reactor.
9797 // ! @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
9999 // ! reactor
100100 // ! @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.
104103 // !
105104 virtual void buildReactorJacobian (ReactorBase* r, vector<Eigen::Triplet<double >>& jacVector) {
106105 throw NotImplementedError (" WallBase::buildReactorJacobian" );
@@ -109,32 +108,29 @@ class WallBase
109108 // ! Build the Jacobian terms specific to the flow device for the network. These
110109 // ! terms
111110 // ! 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
113112 // ! reactor
114113 // ! @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.
118116 // !
119117 virtual void buildNetworkJacobian (vector<Eigen::Triplet<double >>& jacVector) {
120118 throw NotImplementedError (" WallBase::buildNetworkJacobian" );
121119 }
122120
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.
124122 // ! @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.
128125 // !
129- void jacobianCalculated () { m_jac_calculated = true ; };
126+ void calculatedJacobian () { m_jac_calculated = true ; };
130127
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.
132129 // ! @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.
136132 // !
137- void jacobianNotCalculated () { m_jac_calculated = false ; };
133+ void notCalculatedJacobian () { m_jac_calculated = false ; };
138134
139135protected:
140136 ReactorBase* m_left = nullptr ;
0 commit comments