-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Validated refractive index mismatched scenarios using same example fr…
…om lewis's original paper on sMCRT
- Loading branch information
1 parent
5a4c1ca
commit 98303d0
Showing
12 changed files
with
347 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[source] | ||
name = "pencil" | ||
nphotons = 1000000 | ||
direction = "z" | ||
position = [0.0,0.0,-0.01] | ||
spectrum_type = "constant" | ||
wavelength = 500.0 | ||
|
||
[grid] | ||
nxg = 500 | ||
nyg = 500 | ||
nzg = 500 | ||
xmax = 50.0 | ||
ymax = 50.0 | ||
zmax = 0.015 | ||
|
||
[geometry] | ||
geom_name = "box" | ||
BoxDimensions = [100.0,100.0,0.02] | ||
boundingBox = [100.0,100.0,0.03] | ||
position = [0.0,0.0,0.0] | ||
mus = [90] | ||
hgg = [0.75] | ||
mua = [10] | ||
n = [1.0] | ||
|
||
[[detectors]] | ||
type="circle" | ||
position=[0.0, 0.0, -0.011] | ||
direction=[0.0, 0.0, -1.0] | ||
radius1=20 | ||
nbins=100 | ||
maxval = 1.0 | ||
trackHistory=false | ||
|
||
[[detectors]] | ||
type="circle" | ||
position=[0.0, 0.0, 0.011] | ||
direction=[0.0, 0.0, 1.0] | ||
radius1=20 | ||
nbins=100 | ||
maxval = 1.0 | ||
trackHistory=false | ||
|
||
[output] | ||
fluence = "fluence.nrrd" | ||
render_geometry_name = "geom_render.nrrd" | ||
render_geomerty = true | ||
render_source_name = "source_render.nrrd" | ||
render_source = true | ||
render_size = [200,200,200] | ||
overwrite = true | ||
|
||
[simulation] | ||
iseed = 123456789 | ||
absorb=true | ||
load_checkpoint=false | ||
checkpoint_file="check.ckpt" | ||
checkpoint_every_n=10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[source] | ||
name = "uniform" | ||
nphotons = 1000000 | ||
direction = "-z" | ||
point1 = [ -5.0, -5.0, 2.0] | ||
point2 = [ 10.0, 0.0, 0.0] | ||
point3 = [ 0.0, 10.0, 0.0] | ||
spectrum_type = "constant" | ||
wavelength = 500.0 | ||
|
||
[grid] | ||
nxg = 250 | ||
nyg = 250 | ||
nzg = 1000 | ||
xmax = 50.0 | ||
ymax = 50.0 | ||
zmax = 2.0 | ||
|
||
[geometry] | ||
geom_name = "box" | ||
BoxDimensions = [100.0,100.0,3.9] | ||
boundingBox = [100.0,100.0,4.0] | ||
position = [0.0,0.0,0.0] | ||
mus = [820] | ||
hgg = [0.9] | ||
mua = [1.8] | ||
n = [1.38] | ||
|
||
[output] | ||
fluence = "fluence.nrrd" | ||
render_geometry_name = "geom_render.nrrd" | ||
render_geomerty = true | ||
render_source_name = "source_render.nrrd" | ||
render_source = true | ||
render_size = [200,200,200] | ||
overwrite = true | ||
|
||
[simulation] | ||
iseed = 123456789 | ||
absorb=true | ||
load_checkpoint=false | ||
checkpoint_file="check.ckpt" | ||
checkpoint_every_n=10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[source] | ||
name = "uniform" | ||
nphotons = 1000000 | ||
direction = "-z" | ||
point1 = [ -5.0, -5.0, 2.0] | ||
point2 = [ 10.0, 0.0, 0.0] | ||
point3 = [ 0.0, 10.0, 0.0] | ||
spectrum_type = "constant" | ||
wavelength = 500.0 | ||
|
||
[grid] | ||
nxg = 250 | ||
nyg = 250 | ||
nzg = 1000 | ||
xmax = 50.0 | ||
ymax = 50.0 | ||
zmax = 2.0 | ||
|
||
[geometry] | ||
geom_name = "box" | ||
BoxDimensions = [100.0,100.0,3.9] | ||
boundingBox = [100.0,100.0,4.0] | ||
position = [0.0,0.0,0.0] | ||
mus = [210] | ||
hgg = [0.9] | ||
mua = [0.23] | ||
n = [1.38] | ||
|
||
[output] | ||
fluence = "fluence.nrrd" | ||
render_geometry_name = "geom_render.nrrd" | ||
render_geomerty = true | ||
render_source_name = "source_render.nrrd" | ||
render_source = true | ||
render_size = [200,200,200] | ||
overwrite = true | ||
|
||
[simulation] | ||
iseed = 123456789 | ||
absorb=true | ||
load_checkpoint=false | ||
checkpoint_file="check.ckpt" | ||
checkpoint_every_n=10000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.