Skip to content

Commit

Permalink
feat: Create PhotographyFormulas.md
Browse files Browse the repository at this point in the history
  • Loading branch information
RalphHightower committed Dec 18, 2022
1 parent 8e54636 commit 7e753fb
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions PhotographyFormulas.md
@@ -0,0 +1,26 @@
# Photography Formulas

## Calculation of Values

The simple calculations that lead to a reading are based on the Wikipedia entry on [exposure value](https://en.wikipedia.org/wiki/Exposure_value).

The [illuminance](https://en.wikipedia.org/wiki/Illuminance) returned by the Pimoroni BH1745 ( $L$ ) is converted to an exposure value ( $E_v$ ) for ISO 100 using

$$E_v=\log _2 {{L} \over {C}},$$

where $C$ is the light meter [calibration constant](https://en.wikipedia.org/wiki/Light_meter#Calibration_constants).

This exposure value is then adjusted to an Exposure value for the chosen ISO ( $E_{ISO}$ ) using

$$E_{ISO}=E_v + \log_2 {{ISO}\over{100}}.$$

Then, depending on the priority on the light meter, the remaining value is calculated using

$$t = {{N^2} \over {2^{E_{ISO}}}}$$

or

$$N = \sqrt{t 2^{ E_{ISO}}}$$

where $t$ is shutter speed and $N$ is f-stop. The value is then rounded to the nearest nominal value and displayed on the screen.

0 comments on commit 7e753fb

Please sign in to comment.