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

Documentation #22

Merged
merged 32 commits into from
Jan 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
d178fba
import modifications from aw_sky branch concerning icosphere
christian34 Sep 11, 2017
1967ef6
add user defined skies as input of sky_sources
christian34 Sep 18, 2017
6105040
Merge branch 'master' into feature/display_sky_luminances
christian34 Mar 14, 2018
fe4702b
add colormap
christian34 Mar 14, 2018
1bbfdf4
add readme.md
mlabadie Apr 8, 2022
6506e1a
update Readme
mlabadie Apr 8, 2022
e97e991
update Readme
mlabadie Apr 8, 2022
9346c3d
Merge pull request #21 from mlabadie/documentation
mlabadie Apr 8, 2022
aef5491
Merge branch 'master' into documentation
christian34 Jan 19, 2024
1013205
add tutorial for use of sun_and_sky
christian34 Jan 19, 2024
28a87ea
Merge remote-tracking branch 'remotes/origin/master' into documentation
christian34 Jan 22, 2024
12d0a21
clarify sky_irradiance doc
christian34 Jan 24, 2024
1fe6169
merge sky_irradiance_astk in sky_irradiance
christian34 Jan 26, 2024
c670ad7
remove unused modules
christian34 Jan 26, 2024
ccebb1d
remove vle (move to new project on incubator)
christian34 Jan 26, 2024
899da19
modernize tuto_time_control
christian34 Jan 26, 2024
2ba46fb
create sky_luminance for cie skies with polar plot of resulting lumin…
christian34 Jan 30, 2024
aa46f72
optimise clear_sky computing by using numpy u-funcs
christian34 Jan 31, 2024
36991b8
add blended sky type
christian34 Jan 31, 2024
68b0911
typo
christian34 Jan 31, 2024
5fd2018
add Perez all_weather sky model
christian34 Jan 31, 2024
a9a6687
start developing sky_map.py
christian34 Feb 1, 2024
e2fb0c0
simplify sky_luminance function by separating sky types
christian34 Feb 1, 2024
00b0979
add sky discretisation tools for producing simplified sky maps
christian34 Feb 1, 2024
e52df06
Fix sky map bug (add area of disv=cretized arc of sphere)
christian34 Nov 22, 2024
314d36e
debug/improve luminance tutorial
christian34 Nov 24, 2024
66047c7
Merge branch 'master' into feature/display_sky_luminances
christian34 Nov 25, 2024
9bf7aab
Merge branch 'master' into documentation
christian34 Nov 25, 2024
ef0a265
add sky_source scaling by horizontal irradiance function
christian34 Nov 25, 2024
00afc37
Merge branch 'feature/display_sky_luminances' into documentation
christian34 Nov 25, 2024
c2ee663
add icosphere
christian34 Nov 26, 2024
1253a56
scale luminance so that ghi=1
christian34 Nov 26, 2024
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
69 changes: 69 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# <img src="https://raw.githubusercontent.com/openalea/openalea.rtfd.io/master/doc/_static/openalea_web.svg" width="70"/> alinea.astk

**Authors:** Christian Fournier [@christian34](https://github.com/christian34), [email protected]

**Institutes:** INRAE

**Status** : Python package

**License** : [Cecill-C](https://cecill.info/licences/Licence_CeCILL-C_V1-en.html)

**URL** : https://github.com/openalea-incubator/astk

## Descriptions

alinea.astk package provides utilities for FSPM model. It include particularly equation to calculate sun irradiance according to sun position and manage weather data.

## Contents

- meteorology : functions to calculate sun irradiance according to sun position
- sky_irradiance: Equation for determining global horizontal irradiance (GHI), direct normal irradiance (DNI) and diffuse horizontal irradiance under clearsky
condition or estimate them from meteorological data using pvlib library.
- sun_position: Sun position using pvlib library.
- sun_position_astk : Astronomical equation for determining sun position.
- TimeControl: Provides utilities for scheduling models in simulation.
- Weather: Provides utilities for weather protocol and conversion of some weather variable.
- data_access: Set of function to work with resources that are located inside this package data.
- icosphere : Generation of regular spherical polyhedrons: icospheres and their hexagonal/pentagonal duals.
- plant_interface: ?
- plantgl_utils: A generic module to get plant variable from scene.
- sun_and_sky: A collection of equation for modelling sun position, sun irradiance and sky irradiance.

## Installation

### Requierments

- python > 3.7
- pvlib-python
- numpy
- pandas
- openalea.plangl

### Users

```
conda create -n astk -c openalea3 - c conda-forge alinea.astk
```

### Developpers

```
conda create -n astk -c openalea3 - c conda-forge alinea.astk
git clone 'https://github.com/openalea-incubator/astk.git'
cd astk
python setup.py install (or develop)
```

## Quick Start

TODO found example

## Documentation
TODO Doc in Readthedoc

## Contributing

All contributions, bug reports, bug fixes, documentation improvements, enhancements, and ideas are welcome.

A detailed overview on how to contribute can be found in the [contributing guide](http://virtualplants.github.io/contribute/devel/git-workflow.html)

Loading
Loading