Skip to content
Open
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
2 changes: 1 addition & 1 deletion examples/darwin_formulation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ add_operation!(op2, "Print[ Zs[DomainC_Mag], OnRegion Inds, Format Table,\n S
problem.postoperation = postoperation

# Generate and write the .pro file
make_file!(problem)
make_problem!(problem)

# Write the code to a file
problem.filename = "darwin_formulation.pro"
Expand Down
2 changes: 1 addition & 1 deletion examples/electrodynamic_formulation.jl
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ add_operation!(op2, "Echo[Str[\"View[PostProcessing.NbViews-1].Type = 4;\",\n
problem.postoperation = postoperation

# Generate and write the .pro file
make_file!(problem)
make_problem!(problem)

# Write the code to a file
problem.filename = "electrodynamic_formulation_byjlgetdp.pro"
Expand Down
5 changes: 2 additions & 3 deletions examples/jacobian_example.jl
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ problem.jacobian = jac
integ = Integration()
i1 = add!(integ, "I1")
case = add!(i1)
gauss_case = add!(case; Type="Gauss")
geo_case = add_nested_case!(gauss_case)
geo_case = add_nested_case!(case; type="Gauss")
add!(geo_case; GeoElement="Point", NumberOfPoints=1)
add!(geo_case; GeoElement="Line", NumberOfPoints=4)
add!(geo_case; GeoElement="Triangle", NumberOfPoints=4)
Expand All @@ -35,7 +34,7 @@ add!(geo_case; GeoElement="Triangle2", NumberOfPoints=7)
problem.integration = integ

# Generate and write the .pro file
make_file!(problem)
make_problem!(problem)
# Generate and write the .pro file
problem.filename = "jacobian_by_jlgetdp.pro"
write_file(problem)
Loading
Loading