Skip to content

Commit 4898221

Browse files
authored
Merge pull request #17 from wdhawkins/spherical
Fixes for boundary conditions after product quadrature normalization changes
2 parents cae039f + 1d45a1c commit 4898221

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Six_1g_spherical_benchmarks/Problem_1.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
xs_mat.CreateSimpleOneGroup(sigma_t=sigt, c=c)
7878

7979
# Boundary source
80-
bsrc = [1.0]
80+
bsrc = [4.0 * np.pi]
8181

8282
# Angular quadrature
8383
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)

Six_1g_spherical_benchmarks/Problem_2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
xs_mat.CreateSimpleOneGroup(sigma_t=sigt, c=c)
7878

7979
# Boundary source
80-
bsrc = [1.0]
80+
bsrc = [4.0 * np.pi]
8181

8282
# Angular quadrature
8383
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)

Six_1g_spherical_benchmarks/Problem_4.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
xs_mat.CreateSimpleOneGroup(sigma_t=1.0, c=0.0)
4141

4242
# Boundary source
43-
bsrc = [1.0]
43+
bsrc = [4.0 * np.pi]
4444

4545
# Angular quadrature
4646
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)

Six_1g_spherical_benchmarks/Problem_5.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
xs_mat.CreateSimpleOneGroup(sigma_t=1.0, c=0.0)
4141

4242
# Boundary source
43-
bsrc = [1.0]
43+
bsrc = [4.0 * np.pi]
4444

4545
# Angular quadrature
4646
pquad = GLCProductQuadrature3DXYZ(n_polar=2, n_azimuthal=4)

0 commit comments

Comments
 (0)