Skip to content

Commit 518927a

Browse files
Merge pull request #12 from NCAR/validation_fix
fix the validation - fix arg order
2 parents 5880c40 + 1ee5ca9 commit 518927a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

swm_python/swm_numpy.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ def main():
309309
vval = np.zeros((M_LEN, N_LEN))
310310
pval = np.zeros((M_LEN, N_LEN))
311311

312-
uref, vref, pref = read_arrays(v_val_f, u_val_f, p_val_f)
312+
uref, vref, pref = read_arrays(u_val_f, v_val_f, p_val_f)
313313
uval = uref-unew
314314
vval = vref-vnew
315315
pval = pref-pnew

0 commit comments

Comments
 (0)