forked from idaholab/stork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbox.i
60 lines (52 loc) · 804 Bytes
/
box.i
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[Mesh]
type = GeneratedMesh
dim = 3
nx = 2
ny = 2
nz = 2
[]
[Variables]
[./u]
[../]
[]
[UserObjects]
[./montecarlo]
type = MonteCarloUserObject
boundary = '0 1 2 3 4 5'
block = '0'
max_reflect_count = 10
particle_count=100000
absorptivity=1.0
diffuse_reflectivity=0.5
mirrors_reflectivity=0.5
[../]
[]
[Kernels]
[./diff]
type = Diffusion
variable = u
[../]
[]
[BCs]
[./left]
type = DirichletBC
variable = u
boundary = left
value = 0
[../]
[./right]
type = DirichletBC
variable = u
boundary = right
value = 1
[../]
[]
[Executioner]
type = Steady
solve_type = 'PJFNK'
petsc_options_iname = '-pc_type -pc_hypre_type'
petsc_options_value = 'hypre boomeramg'
[]
[Outputs]
exodus = true
[]