pyHarm.Analysis.ABCAnalysis =========================== .. py:module:: pyHarm.Analysis.ABCAnalysis Classes ------- .. autoapisummary:: pyHarm.Analysis.ABCAnalysis.ABCAnalysis Module Contents --------------- .. py:class:: ABCAnalysis(inputData: dict, System: pyHarm.Systems.ABCSystem.ABCSystem, ndofs: int, **kwargs) Bases: :py:obj:`abc.ABC` This is the abstract class ruling the solver class. The system is responsible of solving the system starting at a given starting point. .. py:property:: factory_keyword :abstractmethod: Class name for factory call during instantiation .. py:method:: initialise(**kwargs) :abstractmethod: Initialise step of the analysis. .. py:method:: Solve(**kwargs) :abstractmethod: Solving step of the analysis. .. py:method:: makeStep(**kwargs) :abstractmethod: Make a whole step of the analysis.