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:
@@ -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"]
|
||||
|
||||
Reference in New Issue
Block a user