Skip to content
This repository was archived by the owner on May 18, 2019. It is now read-only.

Commit 3290599

Browse files
qichenghuaOpenModelica-Hudson
authored andcommitted
adapted initial step length in homotopy method in nonlinear solver nox in cppruntime
1 parent d5d856e commit 3290599

File tree

1 file changed

+1
-1
lines changed
  • SimulationRuntime/cpp/Solver/Nox

1 file changed

+1
-1
lines changed

SimulationRuntime/cpp/Solver/Nox/Nox.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -377,7 +377,7 @@ void Nox::LocaHomotopySolve(const int numberofhomotopytries)
377377
// Create step size sublist
378378
Teuchos::ParameterList& stepSizeList = locaParamsList.sublist("Step Size");
379379
stepSizeList.set("Method", "Adaptive"); // Default
380-
stepSizeList.set("Initial Step Size", 1.0e-3); // Should set
380+
stepSizeList.set("Initial Step Size", 1.0e-8); // Should set
381381
stepSizeList.set("Min Step Size", 1.0e-9); // Should set
382382
stepSizeList.set("Max Step Size", 1.0); // Should set
383383

0 commit comments

Comments
 (0)