The script illustrates the reading of Nastran model
from BDF file with FeResPost ruby extension.
import FeResPost
from FeResPost import *
# Creates and
initializes the DataBase :
db=NastranDb()
db.Name="tmpDB2"
try:
db.readBdf("unit_xyz_V1.bdf",["../../MODEL/MESH/"],"bdf",{},True)
except:
print("\n\nMaybe you should modify the two first include statements in
main file!")
print("**********************************************************************\n")
raise
StandardError
The different steps of the Nastran FEM importation
are:
More information on this example, and the manual explaining
the functions used in this example are given in FeResPost
Reference Manual.