Commit 4f130030 authored by Tomáš Oberhuber's avatar Tomáš Oberhuber
Browse files

Adding postIterate to Lax-Fridrichs 1D.

parent fb828e69
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -88,6 +88,12 @@ class eulerProblem:
                                 DofVectorType& rightHandSide,
                                 MeshDependentDataType& meshDependentData );
      
      bool postIterate( const RealType& time,
                        const RealType& tau,
                        const MeshType& mesh,
                        DofVectorType& dofs,
                        MeshDependentDataType& meshDependentData );

   protected:

      DifferentialOperator differentialOperator;
+6 −0
Original line number Diff line number Diff line
@@ -359,4 +359,10 @@ assemblyLinearSystem( const RealType& time,
                                                             b );
}

      bool postIterate( const RealType& time,
                        const RealType& tau,
                        const MeshType& mesh,
                        DofVectorType& dofs,
                        MeshDependentDataType& meshDependentData );

#endif /* eulerPROBLEM_IMPL_H_ */