Accessodb Odb(...)
This method creates a new Odb object. PathOdb Prototypeodb_Odb& Odb(const odb_String& name, const odb_String& analysisTitle, const odb_String& description, const odb_String& path); Required arguments
Optional arguments
Return valueAn Odb object. ExceptionsNone. close()
This method closes an output database. Prototypevoid close(); ArgumentsNone. Return valueNone. ExceptionsNone. getFrame(...)
This method returns the frame at the specified time, frequency, or mode. It will not interpolate values between frames. The method is not applicable to an Odb object containing steps with different domains or to an Odb object containing a step with load case specific data. Prototypeodb_Frame getFrame(double frameValue, odb_Enum::odb_MatchEnum match); Required arguments
Optional arguments
Return valueAn OdbFrame object. Exceptions
save()
This method saves output to an output database (.odb ) file. Prototypevoid save(); ArgumentsNone. Return valueNone. Exceptions
update()
This method is used to update an Odb object in memory while an Abaqus analysis writes data to the associated output database. update checks if additional steps have been written to the output database since it was opened or last updated. If additional steps have been written to the output database, update adds them to the Odb object. Prototypebool update(); ArgumentsNone. Return valueA Boolean specifying whether additional steps or frames were added to the Odb object. ExceptionsNone. hasSectorDefinition()
This method checks whether or not a valid SectorDefinition object, indicating a cyclic symmetry model, is present. Prototypebool hasSectorDefinition(); ArgumentsNone. Return valueA Boolean specifying whether a valid sector definition is available. ExceptionsNone. MembersThe Odb object has members with the same names and descriptions as the arguments to the Odb method. In addition, the Odb object can have the following members: Prototypeodb_String name() const; odb_String analysisTitle() const; odb_String description() const; odb_String path() const; bool isReadOnly() const; odb_Assembly& rootAssembly(); odb_JobData jobData() const; odb_PartRepository& parts(); odb_StepRepository& steps(); odb_SectionCategoryRepository& sectionCategories(); odb_SectorDefinition& sectorDefinition(); odb_InteractionRepository& interactions(); odb_InteractionPropertyRepository& interactionProperties(); odb_ConstraintRepository& constraints();
|