Skip to content

Commit 130f9c2

Browse files
committed
Don't disable $LIBMESH_OPTIONS for vector_fe_ex6
This must have been copied and pasted from earlier harder-to-solve examples; we're not pushing our own solver options here that need to not be overridden.
1 parent 7701dc0 commit 130f9c2

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

  • examples/vector_fe/vector_fe_ex6

examples/vector_fe/vector_fe_ex6/run.sh

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -9,65 +9,65 @@ example_name=vector_fe_ex6
99
### Neumann boundary conditions
1010

1111
options="dim=2 element_type=TRI6 boundary_condition=neumann"
12-
run_example_no_extra_options "$example_name" "$options"
12+
run_example "$example_name" "$options"
1313

1414
options="dim=2 element_type=TRI7 boundary_condition=neumann"
15-
run_example_no_extra_options "$example_name" "$options"
15+
run_example "$example_name" "$options"
1616

1717
options="dim=2 element_type=QUAD8 boundary_condition=neumann"
18-
run_example_no_extra_options "$example_name" "$options"
18+
run_example "$example_name" "$options"
1919

2020
options="dim=2 element_type=QUAD9 boundary_condition=neumann"
21-
run_example_no_extra_options "$example_name" "$options"
21+
run_example "$example_name" "$options"
2222

2323
options="dim=2 order=2 element_type=TRI6 boundary_condition=neumann"
24-
run_example_no_extra_options "$example_name" "$options"
24+
run_example "$example_name" "$options"
2525

2626
options="dim=2 order=2 element_type=TRI7 boundary_condition=neumann"
27-
run_example_no_extra_options "$example_name" "$options"
27+
run_example "$example_name" "$options"
2828

2929
options="dim=2 order=2 element_type=QUAD8 boundary_condition=neumann"
30-
run_example_no_extra_options "$example_name" "$options"
30+
run_example "$example_name" "$options"
3131

3232
options="dim=2 order=2 element_type=QUAD9 boundary_condition=neumann"
33-
run_example_no_extra_options "$example_name" "$options"
33+
run_example "$example_name" "$options"
3434

3535
# Subdividing each hex into 24 tets gets expensive in dbg...
3636
options="dim=3 element_type=TET14 boundary_condition=neumann grid_size=6"
37-
run_example_no_extra_options "$example_name" "$options"
37+
run_example "$example_name" "$options"
3838

3939
options="dim=3 element_type=HEX27 boundary_condition=neumann"
40-
run_example_no_extra_options "$example_name" "$options"
40+
run_example "$example_name" "$options"
4141

4242
### Dirichlet boundary conditions
4343

4444
options="dim=2 element_type=TRI6 boundary_condition=dirichlet"
45-
run_example_no_extra_options "$example_name" "$options"
45+
run_example "$example_name" "$options"
4646

4747
options="dim=2 element_type=TRI7 boundary_condition=dirichlet"
48-
run_example_no_extra_options "$example_name" "$options"
48+
run_example "$example_name" "$options"
4949

5050
options="dim=2 element_type=QUAD8 boundary_condition=dirichlet"
51-
run_example_no_extra_options "$example_name" "$options"
51+
run_example "$example_name" "$options"
5252

5353
options="dim=2 element_type=QUAD9 boundary_condition=dirichlet"
54-
run_example_no_extra_options "$example_name" "$options"
54+
run_example "$example_name" "$options"
5555

5656
options="dim=2 order=2 element_type=TRI6 boundary_condition=dirichlet"
57-
run_example_no_extra_options "$example_name" "$options"
57+
run_example "$example_name" "$options"
5858

5959
options="dim=2 order=2 element_type=TRI7 boundary_condition=dirichlet"
60-
run_example_no_extra_options "$example_name" "$options"
60+
run_example "$example_name" "$options"
6161

6262
options="dim=2 order=2 element_type=QUAD8 boundary_condition=dirichlet"
63-
run_example_no_extra_options "$example_name" "$options"
63+
run_example "$example_name" "$options"
6464

6565
options="dim=2 order=2 element_type=QUAD9 boundary_condition=dirichlet"
66-
run_example_no_extra_options "$example_name" "$options"
66+
run_example "$example_name" "$options"
6767

6868
# Subdividing each hex into 24 tets gets expensive in dbg...
6969
options="dim=3 element_type=TET14 boundary_condition=dirichlet grid_size=6"
70-
run_example_no_extra_options "$example_name" "$options"
70+
run_example "$example_name" "$options"
7171

7272
options="dim=3 element_type=HEX27 boundary_condition=dirichlet"
73-
run_example_no_extra_options "$example_name" "$options"
73+
run_example "$example_name" "$options"

0 commit comments

Comments
 (0)