Skip to content

Commit 714f4c5

Browse files
committed
Running CI again now that VMEC MPI communicator has been fixed for free boundary
1 parent 67150fe commit 714f4c5

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/2_Intermediate/free_boundary_vmec.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
This example shows how to take coils in simsopt, write an mgrid file, and then
55
run free-boundary vmec. No optimization of the plasma or coil shapes is
66
performed in this example.
7+
8+
You can run this example with one or multiple MPI processes.
79
"""
810

911
from pathlib import Path
@@ -67,4 +69,4 @@
6769
assert vmec.wout.ier_flag == 0
6870
np.testing.assert_allclose(vmec.wout.volume_p, 28.6017247168422, rtol=0.01)
6971
np.testing.assert_allclose(vmec.wout.rmnc[0, 0], 5.561878306096512, rtol=0.01)
70-
np.testing.assert_allclose(vmec.wout.bmnc[0, 1], 2.78074392223658, rtol=0.01)
72+
np.testing.assert_allclose(vmec.wout.bmnc[0, 1], 2.78074392223658, rtol=0.01)

examples/run_vmec_examples

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ mpiexec $MPI_OPTIONS -n 2 ./2_Intermediate/constrained_optimization.py
3939

4040
mpiexec $MPI_OPTIONS -n 2 ./2_Intermediate/QH_fixed_resolution.py
4141
mpiexec $MPI_OPTIONS -n 2 ./2_Intermediate/QH_fixed_resolution_boozer.py
42-
./2_Intermediate/free_boundary_vmec.py
42+
mpiexec $MPI_OPTIONS -n 2 ./2_Intermediate/free_boundary_vmec.py
4343

4444
mpiexec $MPI_OPTIONS -n 2 ./3_Advanced/single_stage_optimization.py
4545
mpiexec $MPI_OPTIONS -n 2 ./3_Advanced/single_stage_optimization_finite_beta.py

0 commit comments

Comments
 (0)