Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tjc181/simsphere
Soil-Vegetation-Atmosphere Transfer (SVAT) model
https://github.com/tjc181/simsphere
Last synced: 3 months ago
JSON representation
Soil-Vegetation-Atmosphere Transfer (SVAT) model
- Host: GitHub
- URL: https://github.com/tjc181/simsphere
- Owner: tjc181
- License: mit
- Created: 2018-09-24T14:23:56.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2023-12-06T21:30:52.000Z (11 months ago)
- Last Synced: 2024-04-15T21:00:23.997Z (7 months ago)
- Language: Fortran
- Homepage: https://simsphere.ems.psu.edu
- Size: 454 KB
- Stars: 7
- Watchers: 1
- Forks: 6
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
- open-sustainable-technology - Simsphere - A one-dimensional model that allows one to simulate the transfer of heat and moisture between plants, soil and atmosphere over a 24 hour day. (Natural Resources / Soil and Land)
README
# Simsphere
Welcome to the model Simsphere, a state-of-the art
Soil-Vegetation-Atmosphere Transfer (SVAT) model for use by the general
scientific community. Simsphere is the product of 30 years of continuous
experience and utilization by Toby Carlson and his students at Penn
State. Simsphere is a one-dimensional model that allows one to simulate
the transfer of heat and moisture between plants, soil and atmosphere
over a 24 hour day.Extensive information about the model is available at
https://simsphere.ems.psu.edu .## Mailing list
Consider subscribing to the mailing list [email protected]. To subscribe, send email to [email protected]. The message body must contain the subscribe command and the list name; you may optionally include your name following list name on the same line.
```
SUBSCRIBE SIMSPHERE-L
```
or with optional name
```
SUBSCRIBE SIMSPHERE-L Jane Smith
```## Fortran implementation
This is an updated version of the original Fortran implementation. The goals for this update include:
* Fortran 2008 compliant code with free-form source formatting.
* Full Implementation of unit tests.
* Restructuring of code to eliminate COMMON blocks in favor of modules.
* Reduce (or eliminate!) use of GO TO and DATA statements.
* Implement data structures to simplify passing arguments to routines, reduce global variables.
* Aspire to rework subroutines with pure function calls.## Building the code
You will need a Fortran 2008 compiler and CMake. The code is currently being
developed using gfortran 7.3.0. Please see the [Getting Started
guide](GETTINGSTARTED.md) for additional instructions.