FEM : Correct writer.py at line 1623 and replaced ccx_elset by elset_data

When running a multiple materials and multiple shells FEM analysis calculix solver crashes.

After inspection, it appears that the crash comes from line 1623 in writer.py file where ccx_elset is used while it should be elset_data
This commit is contained in:
Kryptal
2020-02-12 18:49:41 +01:00
committed by Bernd Hahnebach
parent 20c0a7c1eb
commit c02b72b7e9

View File

@@ -1620,7 +1620,7 @@ class FemInputWriterCcx(writerbase.FemInputWriter):
{"long": shellth_obj.Name, "short": shellth_data["ShortName"]}
]
ccx_elset = {}
ccx_elset["ccx_elset"] = ccx_elset
ccx_elset["ccx_elset"] = elset_data
ccx_elset["ccx_elset_name"] = get_ccx_elset_name_standard(names)
ccx_elset["mat_obj_name"] = mat_obj.Name
ccx_elset["ccx_mat_name"] = mat_obj.Material["Name"]