Skip to content
Open
Changes from all commits
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ The main purpose is to generate a **solar beam irradiance** (W/m2) prediction on
#### Example 1
Solar [irradiance](https://en.wikipedia.org/wiki/Solar_irradiance) on the southern hemisphere on October 17, at sea-level 13.01UTC (plane pointing upwards)?

```
```py
import numpy as np
from solarpy import irradiance_on_plane
from datetime import datetime
Expand All @@ -46,7 +46,7 @@ Power output (in W) of a solar panel with the following characteristics:
* in NYC
* on December 25, at 16.15

```
```py
from numpy import array
from solarpy import solar_panel
from datetime import datetime
Expand All @@ -61,7 +61,7 @@ panel.power()
#### Example 3
Solar [declination](https://en.wikipedia.org/wiki/Position_of_the_Sun#Declination_of_the_Sun_as_seen_from_Earth) on August 5?

```
```py
from solarpy import declination
from datetime import datetime

Expand Down