-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex20.i
74 lines (65 loc) · 1.07 KB
/
ex20.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
[Mesh]
file = two_squares.e
dim = 2
[]
[Variables]
[./u]
initial_condition = 0.01
[../]
[]
[Kernels]
[./diff]
type = ExampleDiffusion
variable = u
[../]
[./td]
type = TimeDerivative
variable = u
[../]
[]
[BCs]
[./left]
type = DirichletBC
variable = u
boundary = leftleft
value = 0
[../]
[./right]
type = DirichletBC
variable = u
boundary = rightright
value = 1
[../]
[]
[Materials]
[./badm]
type = BlockAverageDiffusionMaterial
block = 'left right'
block_average_userobject = bav
[../]
[]
[UserObjects]
[./bav]
type = BlockAverageValue
variable = u
execute_on = timestep_begin
[../]
[]
[Executioner]
type = Transient
num_steps = 10
dt = 1
#Preconditioned JFNK (default)
solve_type = 'PJFNK'
petsc_options_iname = '-pc_type -pc_hypre_type'
petsc_options_value = 'hypre boomeramg'
[]
[Outputs]
exodus = true
output_on = 'initial timestep_end'
[./console]
type = Console
perf_log = true
output_on = 'timestep_end failed nonlinear linear'
[../]
[]