Skip to content

Commit

Permalink
adding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
timryanb committed Jan 14, 2025
1 parent c6b91b7 commit 33bcb3a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 3 additions & 1 deletion tests/integration_tests/test_shell_plate_quad.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ def setup_tacs_problems(self, comm):
self.dh = 1e-6

# Instantiate FEA Assembler
struct_options = {}
struct_options = {
"writeCoordinateFrame": True,
}

fea_assembler = pytacs.pyTACS(bdf_file, comm, options=struct_options)

Expand Down
4 changes: 3 additions & 1 deletion tests/integration_tests/test_simple_spring.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def setup_tacs_problems(self, comm):
self.dh = 1e-6

# Instantiate FEA Assembler
struct_options = {}
struct_options = {
"writeCoordinateFrame": True,
}

fea_assembler = pytacs.pyTACS(bdf_file, comm, options=struct_options)

Expand Down
6 changes: 5 additions & 1 deletion tests/integration_tests/test_trans_beam.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,12 @@ def setup_tacs_problems(self, comm):
self.atol = 1e-3
self.dh = 1e-8

struct_options = {
"writeCoordinateFrame": True,
}

# Instantiate FEA Assembler
fea_assembler = pytacs.pyTACS(bdf_file, comm)
fea_assembler = pytacs.pyTACS(bdf_file, comm, options=struct_options)

# Material properties
rho = 27.0 # density kg/m^3
Expand Down

0 comments on commit 33bcb3a

Please sign in to comment.