Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified examples/stegoton_1d/expected_sols.npy
Binary file not shown.
2 changes: 1 addition & 1 deletion examples/stegoton_1d/stegoton.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def moving_wall_bc(state,dim,t,qbc,auxbc,num_ghost):
t0 = (t-t1)/tw1
if abs(t0)<=1.: vwall = -a1*(1.+np.cos(t0*np.pi))
else: vwall=0.
for ibc in range(num_ghost-1):
for ibc in range(num_ghost):
qbc[1,num_ghost-ibc-1] = 2*vwall*state.aux[1,ibc] - qbc[1,num_ghost+ibc]


Expand Down
Loading