Skip to content

Commit 592d94b

Browse files
refactor(tutorial): simplify result display in tutorial3.jl
1 parent afae9d6 commit 592d94b

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

examples/tutorial3.jl

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -359,10 +359,8 @@ formulation = FormulationSet(:FEM,
359359
# Run the FEM model
360360
@time workspace, line_params = compute!(problem, formulation);
361361

362-
# Display primary core results
363-
if !opts.mesh_only
364-
display(per_km(line_params, 1; mode=:RLCG, freq=f, tol=1e-9))
365-
end
362+
# Display computation results
363+
per_km(line_params, 1; mode=:RLCG, freq=f, tol=1e-9)
366364

367365
# Export ZY matrices to ATPDraw
368366
output_file = fullfile("ZY_export.xml")

0 commit comments

Comments
 (0)