Skip to content

Commit

Permalink
Fix README rst format: remove html tables
Browse files Browse the repository at this point in the history
  • Loading branch information
anomam committed Sep 13, 2019
1 parent e4bd9b8 commit 936b1d8
Showing 1 changed file with 21 additions and 95 deletions.
116 changes: 21 additions & 95 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,47 +51,13 @@ Given some timeseries inputs:
df_inputs
.. raw:: html

<div>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>solar_zenith</th>
<th>solar_azimuth</th>
<th>surface_tilt</th>
<th>surface_azimuth</th>
<th>dni</th>
<th>dhi</th>
<th>albedo</th>
</tr>
</thead>
<tbody>
<tr>
<td>2017-08-31 11:00:00</td>
<td>20.0</td>
<td>110.0</td>
<td>10.0</td>
<td>90.0</td>
<td>1000.0</td>
<td>50.0</td>
<td>0.2</td>
</tr>
<tr>
<td>2017-08-31 15:00:00</td>
<td>50.0</td>
<td>250.0</td>
<td>20.0</td>
<td>270.0</td>
<td>900.0</td>
<td>100.0</td>
<td>0.2</td>
</tr>
</tbody>
</table>
</div>

+---------------------+--------------+---------------+--------------+-----------------+--------+-------+--------+
| | solar_zenith | solar_azimuth | surface_tilt | surface_azimuth | dni | dhi | albedo |
+=====================+==============+===============+==============+=================+========+=======+========+
| 2017-08-31 11:00:00 | 20.0 | 110.0 | 10.0 | 90.0 | 1000.0 | 50.0 | 0.2 |
+---------------------+--------------+---------------+--------------+-----------------+--------+-------+--------+
| 2017-08-31 15:00:00 | 50.0 | 250.0 | 20.0 | 270.0 | 900.0 | 100.0 | 0.2 |
+---------------------+--------------+---------------+--------------+-----------------+--------+-------+--------+


And some PV array parameters
Expand Down Expand Up @@ -188,28 +154,13 @@ The two options to run the simulations are:
df_report
.. raw:: html

<div>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>qinc_back</th>
</tr>
</thead>
<tbody>
<tr>
<td>2017-08-31 11:00:00</td>
<td>110.586509</td>
</tr>
<tr>
<td>2017-08-31 15:00:00</td>
<td>86.943571</td>
</tr>
</tbody>
</table>
</div>
+---------------------+------------+
| | qinc_back |
+=====================+============+
| 2017-08-31 11:00:00 | 110.586509 |
+---------------------+------------+
| 2017-08-31 15:00:00 | 86.943571 |
+---------------------+------------+


- `full mode`_: which calculates the equilibrium of reflections for all timestamps and all surfaces
Expand All @@ -233,38 +184,13 @@ The two options to run the simulations are:
100%|██████████| 2/2 [00:00<00:00, 51.08it/s]
.. raw:: html

<div>
<table border="1" class="dataframe">
<thead>
<tr style="text-align: right;">
<th></th>
<th>qinc_front</th>
<th>qinc_back</th>
<th>iso_front</th>
<th>iso_back</th>
</tr>
</thead>
<tbody>
<tr>
<td>2017-08-31 11:00:00</td>
<td>1034.967753</td>
<td>106.627832</td>
<td>20.848345</td>
<td>0.115792</td>
</tr>
<tr>
<td>2017-08-31 15:00:00</td>
<td>886.376819</td>
<td>79.668878</td>
<td>54.995702</td>
<td>1.255482</td>
</tr>
</tbody>
</table>
</div>

+---------------------+-------------+------------+-----------+----------+
| | qinc_front | qinc_back | iso_front | iso_back |
+=====================+=============+============+===========+==========+
| 2017-08-31 11:00:00 | 1034.967753 | 106.627832 | 20.848345 | 0.115792 |
+---------------------+-------------+------------+-----------+----------+
| 2017-08-31 15:00:00 | 886.376819 | 79.668878 | 54.995702 | 1.255482 |
+---------------------+-------------+------------+-----------+----------+


Installation
Expand Down

0 comments on commit 936b1d8

Please sign in to comment.