// This file is generated by WOK (CPPExt). // Please do not edit this file; modify original file instead. // The copyright and license terms as defined for the original file apply to // this header file considered to be the "object code" form of the original source. #ifndef _FEmTool_Assembly_HeaderFile #define _FEmTool_Assembly_HeaderFile #ifndef _Standard_HeaderFile #include #endif #ifndef _Standard_Macro_HeaderFile #include #endif #ifndef _TColStd_Array2OfInteger_HeaderFile #include #endif #ifndef _Handle_FEmTool_HAssemblyTable_HeaderFile #include #endif #ifndef _Standard_Boolean_HeaderFile #include #endif #ifndef _Handle_FEmTool_ProfileMatrix_HeaderFile #include #endif #ifndef _math_Vector_HeaderFile #include #endif #ifndef _FEmTool_SeqOfLinConstr_HeaderFile #include #endif #ifndef _TColStd_SequenceOfReal_HeaderFile #include #endif #ifndef _Standard_Integer_HeaderFile #include #endif #ifndef _Standard_Real_HeaderFile #include #endif class FEmTool_HAssemblyTable; class FEmTool_ProfileMatrix; class StdFail_NotDone; class Standard_DimensionError; class Standard_DomainError; class TColStd_Array2OfInteger; class math_Matrix; class math_Vector; //! Assemble and solve system from (one dimensional) Finite Elements
class FEmTool_Assembly { public: void* operator new(size_t,void* anAddress) { return anAddress; } void* operator new(size_t size) { return Standard::Allocate(size); } void operator delete(void *anAddress) { if (anAddress) Standard::Free((Standard_Address&)anAddress); } Standard_EXPORT FEmTool_Assembly(const TColStd_Array2OfInteger& Dependence,const Handle(FEmTool_HAssemblyTable)& Table); //! Nullify all Matrix 's Coefficient
Standard_EXPORT void NullifyMatrix() ; //! Add an elementary Matrix in the assembly Matrix
//! if Dependence(Dimension1,Dimension2) is False
Standard_EXPORT void AddMatrix(const Standard_Integer Element,const Standard_Integer Dimension1,const Standard_Integer Dimension2,const math_Matrix& Mat) ; //! Nullify all Coordinate of assembly Vector (second member)
Standard_EXPORT void NullifyVector() ; //! Add an elementary Vector in the assembly Vector (second member)
Standard_EXPORT void AddVector(const Standard_Integer Element,const Standard_Integer Dimension,const math_Vector& Vec) ; //! Delete all Constraints.
Standard_EXPORT void ResetConstraint() ; //! Nullify all Constraints.
Standard_EXPORT void NullifyConstraint() ; Standard_EXPORT void AddConstraint(const Standard_Integer IndexofConstraint,const Standard_Integer Element,const Standard_Integer Dimension,const math_Vector& LinearForm,const Standard_Real Value) ; //! Solve the assembly system
//! Returns Standard_False if the computation failed.
Standard_EXPORT Standard_Boolean Solve() ; Standard_EXPORT void Solution(math_Vector& Solution) const; Standard_EXPORT Standard_Integer NbGlobVar() const; Standard_EXPORT void GetAssemblyTable(Handle(FEmTool_HAssemblyTable)& AssTable) const; protected: private: TColStd_Array2OfInteger myDepTable; Handle_FEmTool_HAssemblyTable myRefTable; Standard_Boolean IsSolved; Handle_FEmTool_ProfileMatrix H; math_Vector B; Handle_FEmTool_ProfileMatrix GHGt; FEmTool_SeqOfLinConstr G; TColStd_SequenceOfReal C; }; // other Inline functions and methods (like "C++: function call" methods) #endif