Skip to content

Commit

Permalink
updated test file
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasFuchs committed Feb 29, 2024
1 parent 9fbf4e0 commit a67ed5c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/test_setup_geometry.jl
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ Grid = CreateCartGrid(size=(10,20,30),x=(0.0km,10km), y=(0.0km, 10km),


# test 1D-explicit thermal solver for AddBox -----------
Grid = CreateCartGrid(size=(96,96,96),x=(-200.,200.), y=(-200.,200.), z=(-200.,0))
nel = 96
Grid = CreateCartGrid(size=(nel,nel,nel),x=(-200.,200.), y=(-200.,200.), z=(-200.,0))
Temp = zeros(Float64, Grid.N...);
Phases = zeros(Int64, Grid.N...);

Expand Down

0 comments on commit a67ed5c

Please sign in to comment.