Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct mA to A conversion in Power-Monitoring-Calibration.md #1439

Merged
merged 2 commits into from
Dec 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions docs/Power-Monitoring-Calibration.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,16 +35,21 @@
[`VoltageSet <voltage>`](Commands.md#voltageset)
_Replace `<voltage>` with your standard voltage or with reading on your multi-meter if you have one. Your voltage will vary depending on the electrical standards and your electrical grid_

3. Verify the **Current** reading by calculating current value (amperage) using this formula: **P<sub>(W)</sub>/V<sub>(V)</sub>=I<sub>(A)</sub>**. Adjust the current offset if needed (in milliAmps (mA=A\*1000)):
3. Verify the **Current** reading by calculating current value (amperage) using this formula: **P<sub>(W)</sub>/V<sub>(V)</sub>=I<sub>(A)</sub>**. Adjust the current offset if needed (in milliAmps ($1000mA=1A$)):
[`CurrentSet <current>`](Commands.md#currentset)
_Replace `<current>` with your calculated value (in milliAmps)_

`CurrentSet` calculation:
P/V=I
1000 * Watts/Volts = milliAmperes
$$\frac{Watts}{Volts}=Amps$$

and thus

$$1000 \* \frac{Watts}{Volts} = milliAmps$$

!!! example
1000*(60.0/235.5) = 254.777
Consider a power usage of $60W$ at a voltage of $240V$. Then the current in milliAmps can be calculated as

$$1000 \* \frac{60}{240} = 240.0$$
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

According to my calculator is (60 / 240) * 1000 = 250 ?!?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are completely correct, I have changed it to hopefully now be right. Thanks for the comment :)


4. Confirm the validity of your calibration process checking `Power Factor` from the web UI which should be as close as possible to `1.00`. In theory resistive loads will always provide a power factor of 1.00. If that is not the case, we recommend you repeat the calibration process and make sure everything was done correctly.

Expand Down