|
OOFEM 3.0
|
#include <dmexportmodule.h>
Public Member Functions | |
| DofManExportModule (int n, EngngModel *e) | |
| Constructor. | |
| virtual | ~DofManExportModule () |
| Destructor. | |
| void | initializeFrom (InputRecord &ir) override |
| Initializes receiver according to object description stored in input record. | |
| void | doOutput (TimeStep *tStep, bool forcedOutput=false) override |
| const char * | giveClassName () const override |
| Returns class name of the receiver. | |
| const char * | giveInputRecordName () const |
| Public Member Functions inherited from oofem::ExportModule | |
| ExportModule (int n, EngngModel *e) | |
| Constructor. Creates empty Output Manager with number n. | |
| virtual | ~ExportModule () |
| Destructor. | |
| void | doForcedOutput (TimeStep *tStep) |
| bool | testSubStepOutput () |
| virtual void | initialize () |
| virtual void | initializeElementSet () |
| virtual void | terminate () |
Protected Member Functions | |
| FILE * | giveOutputStream (TimeStep *tStep) |
| Protected Member Functions inherited from oofem::ExportModule | |
| int | giveNumberOfRegions () |
| Returns number of regions (aka regionSets). | |
| Set * | giveRegionSet (int i) |
| Returns element set. | |
| std::string | giveOutputBaseFileName (TimeStep *tStep) |
| bool | testTimeStepOutput (TimeStep *tStep) |
| bool | testDomainOutput (int n) |
| std::string | errorInfo (const char *func) const |
| Returns string for prepending output (used by error reporting macros). | |
Protected Attributes | |
| IntArray | dofManList |
| Protected Attributes inherited from oofem::ExportModule | |
| int | number |
| Component number. | |
| EngngModel * | emodel |
| Problem pointer. | |
| bool | tstep_all_out_flag |
| Indicates all steps selection. | |
| int | tstep_step_out |
| User timeStep Output step. Indicates every tstep_step_out-th step selected. | |
| std ::list< Range > | tsteps_out |
| List of user selected step numbers. | |
| bool | tstep_substeps_out_flag |
| bool | domain_all_flag |
| Indicates all domains. | |
| IntArray | domainMask |
| Domain selection mask. | |
| IntArray | regionSets |
| regions represented by sets | |
| double | timeScale |
| Scaling time in output, e.g. conversion from seconds to hours. | |
| Set | defaultElementSet |
| Default region set. | |
| bool | pythonExport |
| Output is carried out as a python list instead of writing files. | |
Represents DofManager export module. This module writes the coordinates of all dof managers along with the values of displacements for further processing.
Definition at line 54 of file dmexportmodule.h.
| oofem::DofManExportModule::DofManExportModule | ( | int | n, |
| EngngModel * | e ) |
Constructor.
|
virtual |
Destructor.
Definition at line 54 of file dmexportmodule.C.
|
overridevirtual |
Writes the output. Abstract service.
| tStep | Time step. |
| forcedOutput | If true, no testTimeStepOutput should be done. |
Implements oofem::ExportModule.
Definition at line 69 of file dmexportmodule.C.
References oofem::FloatArray::at(), oofem::IntArray::at(), oofem::StructuralEngngModel::buildReactionTable(), oofem::StructuralEngngModel::computeReaction(), dofManList, oofem::ExportModule::emodel, oofem::DofManager::giveCoordinate(), oofem::Domain::giveDofManager(), oofem::FEMComponent::giveNumber(), oofem::Domain::giveNumberOfDofManagers(), giveOutputStream(), oofem::TimeStep::giveTargetTime(), and oofem::ExportModule::testTimeStepOutput().
|
inlineoverridevirtual |
Returns class name of the receiver.
Implements oofem::ExportModule.
Definition at line 68 of file dmexportmodule.h.
|
inline |
Definition at line 69 of file dmexportmodule.h.
References _IFT_DofManExportModule_Name.
|
protected |
Definition at line 144 of file dmexportmodule.C.
References oofem::ExportModule::giveOutputBaseFileName(), and OOFEM_ERROR.
Referenced by doOutput().
|
overridevirtual |
Initializes receiver according to object description stored in input record.
Reimplemented from oofem::ExportModule.
Definition at line 59 of file dmexportmodule.C.
References _IFT_DofManExportModule_dmlist, dofManList, and IR_GIVE_OPTIONAL_FIELD.
|
protected |
Definition at line 57 of file dmexportmodule.h.
Referenced by doOutput(), and initializeFrom().