Skip to content

Commit

Permalink
remove unnecessary 1.5 multiplier
Browse files Browse the repository at this point in the history
  • Loading branch information
Natsoulas committed Dec 9, 2024
1 parent ce93f74 commit 93e7b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/simulation/sensors/coarseSunSensor/coarseSunSensor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ void CoarseSunSensor::Reset(uint64_t CurrentSimNanos)

this->noiseModel.setRNGSeed(this->RNGSeed);

nMatrix(0,0) = this->senNoiseStd*1.5;
nMatrix(0,0) = this->senNoiseStd;
this->noiseModel.setNoiseMatrix(nMatrix);

bounds(0,0) = this->walkBounds;
Expand Down

0 comments on commit 93e7b05

Please sign in to comment.