Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion HEU_MET_FAST_003/HEU_MET_FAST_003.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,11 @@
groupsets=[
{
"groups_from_to": (0, num_groups - 1),
"angular_quadrature": GLCProductQuadrature3DXYZ(n_polar=8, n_azimuthal=16),
"angular_quadrature": GLCProductQuadrature3DXYZ(
n_polar=8,
n_azimuthal=16,
scattering_order=3
),
"inner_linear_method": "petsc_gmres",
"angle_aggregation_type": "single",
"angle_aggregation_num_subsets": 1,
Expand Down
2 changes: 1 addition & 1 deletion OpenSn_Logo_CAD/opensn.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
src = VolumetricSource(block_ids=[1], group_strength=src_strength)

# Quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=8, n_azimuthal=16)
pquad = GLCProductQuadrature3DXYZ(n_polar=8, n_azimuthal=16, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
bsrc = [4.0 * np.pi]

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_2.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
bsrc = [4.0 * np.pi]

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_3.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
mg_src = VolumetricSource(block_ids=[2], group_strength=[1.0])

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_4.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
bsrc = [4.0 * np.pi]

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_5.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
bsrc = [4.0 * np.pi]

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Six_1g_spherical_benchmarks/Problem_6.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
mg_src = VolumetricSource(block_ids=[1], group_strength=[1.0])

# Angular quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down
2 changes: 1 addition & 1 deletion Urban_Source/urban_source.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
src = VolumetricSource(block_ids=[2], group_strength=src_strength)

# Quadrature
pquad = GLCProductQuadrature3DXYZ(n_polar=8, n_azimuthal=16)
pquad = GLCProductQuadrature3DXYZ(n_polar=8, n_azimuthal=16, scattering_order=0)

# Solver
phys = DiscreteOrdinatesProblem(
Expand Down