Skip to content

Commit

Permalink
FEM: 1DFlow, fix z88 input file writer
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach authored and wwmayer committed Feb 28, 2017
1 parent 919823d commit 20f4325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Mod/Fem/FemInputWriterZ88.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def __init__(self,
contact_obj, planerotation_obj, transform_obj,
selfweight_obj, force_obj, pressure_obj,
temperature_obj, heatflux_obj, initialtemperature_obj,
beamsection_obj, shellthickness_obj,
beamsection_obj, shellthickness_obj, fluidsection_obj,
analysis_type=None, dir_name=None
):

Expand All @@ -53,7 +53,7 @@ def __init__(self,
contact_obj, planerotation_obj, transform_obj,
selfweight_obj, force_obj, pressure_obj,
temperature_obj, heatflux_obj, initialtemperature_obj,
beamsection_obj, shellthickness_obj,
beamsection_obj, shellthickness_obj, fluidsection_obj,
analysis_type, dir_name)
self.file_name = self.dir_name + '/z88'
print('FemInputWriterZ88 --> self.dir_name --> ' + self.dir_name)
Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/FemToolsZ88.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def write_inp_file(self):
self.contact_constraints, self.planerotation_constraints, self.transform_constraints,
self.selfweight_constraints, self.force_constraints, self.pressure_constraints,
self.temperature_constraints, self.heatflux_constraints, self.initialtemperature_constraints,
self.beam_sections, self.shell_thicknesses,
self.beam_sections, self.shell_thicknesses, self.fluid_sections,
self.analysis_type, self.working_dir)
self.inp_file_name = inp_writer.write_z88_input()
except:
Expand Down

0 comments on commit 20f4325

Please sign in to comment.