Skip to content
Snippets Groups Projects
Commit 80339e04 authored by Boman Romain's avatar Boman Romain
Browse files

coarser mesh

parent 79440929
No related branches found
Tags v1.0.0
No related merge requests found
Pipeline #7102 passed
...@@ -9,25 +9,25 @@ fem.debug_level(0) ...@@ -9,25 +9,25 @@ fem.debug_level(0)
if __name__ == "__main__": if __name__ == "__main__":
# fine mesh # fine mesh
pars = {
"Lx": 5.0, # width
"Ly": 1.0, # depth
"Lz": 1.0, # height/thickness
"nx": 60,
"ny": 30,
"nz": 30
}
# same as python
# pars = { # pars = {
# "Lx": 5.0, # width # "Lx": 5.0, # width
# "Ly": 1.0, # depth # "Ly": 1.0, # depth
# "Lz": 1.0, # height/thickness # "Lz": 1.0, # height/thickness
# "nx": 15, # "nx": 60,
# "ny": 2, # "ny": 30,
# "nz": 10 # "nz": 30
# } # }
# same as python
pars = {
"Lx": 5.0, # width
"Ly": 1.0, # depth
"Lz": 1.0, # height/thickness
"nx": 15,
"ny": 2,
"nz": 10
}
# mono-element for debug # mono-element for debug
# pars = { # pars = {
# "Lx": 5.0, # width # "Lx": 5.0, # width
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment