Skip to content

Commit

Permalink
Reading stiffness file correction
Browse files Browse the repository at this point in the history
  • Loading branch information
guillencampa committed Jan 2, 2025
1 parent 77b0d52 commit 563d78b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/MoorDyn2.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ class MoorDyn final : public io::IO
return MOORDYN_INVALID_INPUT;
}
x.push_back(atof(entries[0].c_str()));
y.push_back(atof(entries[0].c_str()));
y.push_back(atof(entries[1].c_str()));
LOGDBG << "(" << x.back() << ", " << y.back() << ")" << std::endl;
}

Expand Down

0 comments on commit 563d78b

Please sign in to comment.