Skip to content

Commit

Permalink
Add syntax checks for all previously untested input files
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsayad authored and cticenhour committed Sep 26, 2019
1 parent 41ec512 commit 201c7ec
Show file tree
Hide file tree
Showing 6 changed files with 101 additions and 25 deletions.
19 changes: 19 additions & 0 deletions problems/physics/multi-scale-grain-growth/tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
[Tests]
[all]
type = RunApp
input = 'larry-2d-one-spot-scaled-1st-order.i'
check_input = True
[]
[bottom]
type = RunApp
input = 'grain_growth_2D_bottom.i'
check_input = True
prereq = all
[]
[middle]
type = RunApp
input = 'grain_growth_2D_middle.i'
check_input = True
prereq = all
[]
[]
12 changes: 12 additions & 0 deletions problems/physics/no-surface-tension/tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[Tests]
[cold]
type = RunApp
input = cold-no-surface-tension.i
check_input = True
[]
[hot]
type = RunApp
input = hot-no-surface-tension.i
check_input = True
[]
[]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
period=5e-4
# period=5e-4
endtime=5e-3
timestep=5e-6
surfacetemp=300
Expand Down
37 changes: 37 additions & 0 deletions problems/physics/surface-tension/tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[Tests]
[2d-one-spot-scaled-2nd-order]
type = RunApp
input = 2d-one-spot-scaled-2nd-order.i
check_input = True
[]
[2d-one-spot-unscaled-2nd-order]
type = RunApp
input = 2d-one-spot-unscaled-2nd-order.i
check_input = True
[]
[3d-one-spot-unscaled-1st-order]
type = RunApp
input = 3d-one-spot-unscaled-1st-order.i
check_input = True
[]
[3d-scaled-1st-order]
type = RunApp
input = 3d-scaled-1st-order.i
check_input = True
[]
[cold-start-twice-around-circle]
type = RunApp
input = cold-start-twice-around-circle.i
check_input = True
[]
[gold-2d-one-spot-scaled-1st-order]
type = RunApp
input = gold-2d-one-spot-scaled-1st-order.i
check_input = True
[]
[hot-once-around-circle]
type = RunApp
input = hot-once-around-circle.i
check_input = True
[]
[]
49 changes: 25 additions & 24 deletions problems/profiling/kc-profiling.i
Original file line number Diff line number Diff line change
Expand Up @@ -75,30 +75,6 @@
type = Diffusion
variable = disp_z
[../]
[./mesh_x]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[./mesh_y]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[./mesh_z]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[]

[ADKernels]
Expand Down Expand Up @@ -186,6 +162,31 @@
p = p
use_displaced_mesh = true
[../]

[./mesh_x]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[./mesh_y]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[./mesh_z]
type = INSConvectedMesh
variable = vel_x
disp_x = disp_x
disp_y = disp_y
disp_z = disp_z
use_displaced_mesh = true
[../]
[]

[BCs]
Expand Down
7 changes: 7 additions & 0 deletions problems/profiling/tests
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[Tests]
[kc-profiling]
type = RunApp
input = kc-profiling.i
check_input = True
[]
[]

0 comments on commit 201c7ec

Please sign in to comment.