Skip to content

Commit

Permalink
FEM: Material name has to be limited to 80 characters for ccx
Browse files Browse the repository at this point in the history
Signed-off-by: Przemo Firszt <przemo@firszt.eu>
  • Loading branch information
PrzemoF authored and wwmayer committed May 1, 2015
1 parent 27e43f6 commit 39fd6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Fem/ccxInpWriter.py
Expand Up @@ -40,7 +40,7 @@ def write_material_element_sets(self, f):
for m in self.material_objects:
mat_obj = m['Object']
mat_obj_name = mat_obj.Name
mat_name = mat_obj.Material['Name']
mat_name = mat_obj.Material['Name'][:80]

print mat_obj_name, ': ', mat_name
f.write('*ELSET,ELSET=' + mat_obj_name + '\n')
Expand Down

0 comments on commit 39fd6d9

Please sign in to comment.