Skip to content

Commit 2fc4990

Browse files
committed
fix missing option
1 parent ced1fdd commit 2fc4990

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

test/test_basic.ipynb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"with open(root + \"/initial-contact.json\", \"r\") as f:\n",
2222
" config = json.load(f)\n",
2323
"\n",
24+
"config[\"contact\"][\"use_convergent_formulation\"] = True\n",
2425
"config[\"root_path\"] = root + \"/initial-contact.json\"\n",
2526
"\n",
2627
"solver = pf.Solver()\n",
@@ -69,7 +70,7 @@
6970
" sol = solver.step_in_time(sol, t0, dt, t+1)\n",
7071
"\n",
7172
" t0 += dt\n",
72-
" solver.export_vtu(sol, np.zeros((0, 0)), t0, dt, \"step_\" + str(i) + \".vtu\")\n"
73+
" solver.export_vtu(\"step_\" + str(i) + \".vtu\", sol, np.zeros((0, 0)), t0, dt)\n"
7374
]
7475
},
7576
{

0 commit comments

Comments
 (0)