| 78 |
|
|
| 79 |
|
private: |
| 80 |
|
std::map<std::string, HydroProp> parseFrictionFile(const std::string& filename); |
| 81 |
< |
void genRandomForceAndTorque(Vector3d& force, Vector3d& torque, unsigned int index, double variance); |
| 81 |
> |
void genRandomForceAndTorque(Vector3d& force, Vector3d& torque, unsigned int index, RealType variance); |
| 82 |
|
std::vector<HydroProp> hydroProps_; |
| 83 |
|
SeqRandNumGen randNumGen_; |
| 84 |
< |
double variance_; |
| 85 |
< |
double langevinBufferRadius_; |
| 86 |
< |
double frozenBufferRadius_; |
| 84 |
> |
RealType variance_; |
| 85 |
> |
RealType langevinBufferRadius_; |
| 86 |
> |
RealType frozenBufferRadius_; |
| 87 |
|
bool sphericalBoundaryConditions_; |
| 88 |
|
}; |
| 89 |
|
|