From 952dd5e4e716ae75d902afe98ff6e55fca2be60e Mon Sep 17 00:00:00 2001 From: Connor Moreno Date: Thu, 12 Dec 2024 16:02:50 -0600 Subject: [PATCH] Update examples --- Examples/nwl_geom_example.py | 6 ++---- Examples/parastell_example.py | 6 ++---- Examples/radial_distance_example.py | 2 +- 3 files changed, 5 insertions(+), 9 deletions(-) diff --git a/Examples/nwl_geom_example.py b/Examples/nwl_geom_example.py index 51af6c6..8d9a1c3 100644 --- a/Examples/nwl_geom_example.py +++ b/Examples/nwl_geom_example.py @@ -25,9 +25,7 @@ split_chamber=False, ) # Export in-vessel component files -stellarator.export_invessel_build( - export_cad_to_dagmc=False, export_dir=export_dir -) +stellarator.export_invessel_build(export_dir=export_dir) # Define source mesh parameters mesh_size = (11, 81, 61) @@ -48,4 +46,4 @@ # Export DAGMC neutronics H5M file stellarator.build_cubit_model(skip_imprint=True, legacy_faceting=False) tag_surface_native(1, "vacuum") -stellarator.export_dagmc_cubit(filename="nwl_geom", export_dir=export_dir) +stellarator.export_cf_dagmc(filename="nwl_geom", export_dir=export_dir) diff --git a/Examples/parastell_example.py b/Examples/parastell_example.py index d124dad..eb5b0fc 100644 --- a/Examples/parastell_example.py +++ b/Examples/parastell_example.py @@ -48,9 +48,7 @@ toroidal_angles, poloidal_angles, wall_s, radial_build_dict ) # Export in-vessel component files -stellarator.export_invessel_build( - export_cad_to_dagmc=False, export_dir=export_dir -) +stellarator.export_invessel_build(export_dir=export_dir) # Define build parameters for magnet coils coils_file = "coils.example" @@ -81,4 +79,4 @@ stellarator.build_cubit_model(skip_imprint=False, legacy_faceting=True) # Export DAGMC neutronics H5M file -stellarator.export_dagmc_cubit(filename="dagmc", export_dir=export_dir) +stellarator.export_cf_dagmc(filename="dagmc", export_dir=export_dir) diff --git a/Examples/radial_distance_example.py b/Examples/radial_distance_example.py index 4192b5e..321442a 100644 --- a/Examples/radial_distance_example.py +++ b/Examples/radial_distance_example.py @@ -111,4 +111,4 @@ stellarator.build_cubit_model(skip_imprint=False, legacy_faceting=True) # Export DAGMC neutronics H5M file -stellarator.export_dagmc_cubit(filename="dagmc", export_dir=export_dir) +stellarator.export_cf_dagmc(filename="dagmc", export_dir=export_dir)