Skip to content

Commit 183701d

Browse files
committed
fix: indentation fixes
1 parent a5aacc3 commit 183701d

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

docs/inputs.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ The columns are as follows:
419419

420420
This last entry expects a string of one or more characters without spaces, each character
421421
activating a given output property. A placeholder character such as “-” should be used if no
422-
outputs are wanted. Eight output properties are currently possible:
422+
outputs are wanted. Eight output properties are currently possible:
423423

424424
- p – node positions
425425
- v – node velocities
@@ -493,7 +493,7 @@ The columns are as follows:
493493

494494
This last entry expects a string of one or more characters without spaces, each character
495495
activating a given output property. A placeholder character such as “-” should be used if no
496-
outputs are wanted. Eight output properties are currently possible:
496+
outputs are wanted. Ten output properties are currently possible:
497497

498498
- p – node positions
499499
- v – node velocities

source/Line.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ Line::setup(int number_in,
130130
EnvCondRef env_in,
131131
shared_ptr<ofstream> outfile_pointer,
132132
string channels_in,
133-
real dtM0)
133+
real dtM0)
134134
{
135135
env = env_in; // set pointer to environment settings object
136136
number = number_in;

source/Line.hpp

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ class DECLDIR Line final : public Instance, public NatFreqCFL
387387
EnvCondRef env_in,
388388
shared_ptr<ofstream> outfile,
389389
string channels,
390-
real dtM0);
390+
real dtM0);
391391

392392
/** @brief Set the environmental data
393393
* @param waves_in Global Waves object
@@ -401,7 +401,7 @@ class DECLDIR Line final : public Instance, public NatFreqCFL
401401
seafloor = seafloor_in;
402402
}
403403

404-
/** @brief Initializse the line object
404+
/** @brief Initialize the line object
405405
* @note Becasue Line.hpp is the only function that calls this, no state
406406
* vectors need to be returned. This is different from the structure of
407407
* the other objects initialize functions.
@@ -965,10 +965,7 @@ class DECLDIR Line final : public Instance, public NatFreqCFL
965965
vec getEndSegmentMoment(EndPoints end_point, EndPoints rod_end_point) const;
966966

967967
/** @brief Calculate forces and get the derivative of the line's states
968-
* @param drdt Output state derivatives
969-
* @param vel Where to store the velocities of the internal nodes
970-
* @param acc Where to store the accelerations of the internal nodes
971-
* @param misc Where to store the misc states of lines (viv phase, viscoelastic, unused)
968+
* @param drdt Output state derivatives
972969
* @throws nan_error If nan values are detected in any node position
973970
*/
974971
void getStateDeriv(InstanceStateVarView drdt);

0 commit comments

Comments
 (0)