I need to extract the mass, stiffness and damping structural matrices from a .bdf files. Normally I just needed to add the following lines after BEGIN BULK in the .bdf file to get that:
"PARAM,EXTOUT,DMIGPCH"
"PARAM,COUPMASS,1"
Unfortunately when I'm trying to get that, Nastran is not able to create the .pch file where all information related to the matrices are stored.
So, How can I solve this problem? Is needed to add some addicional information inside to the .bdf file?
When it is necessary to send us models, it is probably best to open a customer support case, rather than posting the model on this public forum.
I ran your input file and see that there is a FATAL error- always check the f06 for errors. This FATAL is due to have MAT1 with an id of '1' twice in the input file. If you change one of them (and the corresponding PSHELL that uses it) to a new id, it should run.
I changed:
$ Material Record: Glass
MAT1 1 6.6+10 .21 2500. .01
$ Elements and Element Properties for Section: Mat1_01
$ This PSHELL entry was generated from the following Apex objects
$ Apex Behavior: Apex Default Behavior
$ Apex Section: Mat1
$ Apex Material: Glass
PSHELL 463 1 1.-5 1 1
to:
$ Material Record: Glass
MAT1 2 6.6+10 .21 2500. .01
$ Elements and Element Properties for Section: Mat1_01
$ This PSHELL entry was generated from the following Apex objects
I think that is not the problem because I've modified my model in order to use just one material and, even like this, the Nastran cant be able to extract the matrices. I really would like to open a custumer suppor case in order to send you the Apex models and their bdf files.
By the other hand, there is one way to extract the matrices from Nastran but this is not a practical way which is described below:
1.- The only way in which the bdf file can be read by the NASTRAN is: Firstly: I have to copy the first forty lines from an old bdf file (this BDF file corresponts to old model made in APEX, i.e. Template.bdf) and copy all of then into the new BDF file (i.e. MyNewModel.bdf). Second, the following lines must be written after the "BEGIN BULK" and run it in NASTRAN:
"PARAM,EXTOUT,DMIGPCH"
"PARAM,COUPMASS,1"
2.- If the matrices are getting using step 1, a PCH file is created. Unfortunately, in the matrices that I obtained, it must be content the information about all nodes, instead of that, the nodes which form part of two different FE-elements are deleted from the matrices in th PCH file. I don't know if I need to do something else or write another line in the bdf file in order to get the matrices where all nodes are included.
I really hope that issue can be solved shortly.
I'm attaching both the Template.bdf and the new bdf files