Skip to main content

Simulation of hydroponic farming

Project description

Project Logo

Coverage Status

Project Hydroponic simulation


This python package aims to provide some basic tools to simulate hydroponic plant growing.🌱 Hydroponics is a farming method where plants grow without soil and instead use a solution containing the required mineral nutriments.👨‍🌾 This technique is already widely used because it is more efficient in water usage and is in development for farming on mars.🪐🚀

In particular, this package allows you to simulate the concentration of minerals and the pH of hydroponic solutions, determine the pH and check the solubility among others. See the "Basic Usage" section below and "example.ipynb" document for further examples and explainantions of the package.

Also see the Githubwebpages associated with this project to see the full documentation: hydroponics.

Learn more about hydropics with the following links:


0. Usage 🔥

import hydroponics as hp

plant_name = "Tomato"
required_nutriments = {"Na+": 0.1, "NO3(-)": 0.5, "K+": 0.2} #minerals needed by the plant
solution = {"Na+": 0.2, "NO3(-)": 0.6, "K+": 0.3} #composition of the solution {"ion_name":conc. [g/L]}
analysed_ions = ["Na+", "NO3(-)", "K+"] #ions for which the conc. will be analysed
volume = 2 #L
growth_time = 20 #days
forbidden_ions = ["Cl-"] #ions you don't want in the solution

# Generate an awsome simulation report (PDF)
hp.generate_report(plant_name, required_nutriments, growth_time, analysed_ions, solution, volume, forbidden_ions = forbidden_ions)

This usage example shows how to quickly use the package's main functionality: generate_report that will provide a lot of essential informations of the simulation. 📝


1. Installation 👩‍💻

Everything is just one pip install away - philippe schwaller


The following pip command can be used to install the python package. The package was made with python 3.10

pip install better-hydroponics==0.1.2

Be aware, the package uses the following dependencies:

  • Numpy (1.26.4)
  • Pandas (2.2.2)
  • matplotlib (3.8.4)
  • sympy (1.12)
  • openpyxl (3.1.2)

Please install the dependencies with their according pip install commands in the right environment.


2. Basic Usage

The package uses python dictionaries to store the concentration of the different salts/ion in the solution. By default concentrations are given in [g/L]. However different functions exist to convert g/L to mol/L and inversly.

Start by importing the package:

import hydroponics as hp

To determine the quantity of each salt to add to the solution to obain the desired concentration of each ion one can use the make_solution function. This function checks the solubility of the salt. 🧑‍🔬

ion_composition = {"K+":0.1, "Cl-": 0.3, "H2PO4(-)":0.5, "Ca(2+)":0.4} #desired concentrations in [g/L]
volume = 10 #L
forbidden_ions = ["Li+", "SO4(2-)"]

salts_to_add = hp.make_solution(ion_composition, volume, forbidden_ions)
print(salts_to_add)

One can visualise the evolution of the concentration of the ions as the plant grows with the plot_graph function.

#Define the variables
solution = {"Na+": 0.2, "NO3(-)": 0.6, "K+": 0.3} #composition of the solution {"ion_name":conc. [g/L]}
required_nutriments = {"Na+": 0.1, "NO3(-)": 0.5, "K+": 0.2} #minerals needed by the plant
growth_time = 20 #days
volume = 5 #L

#plot a figure that shows the concentration of ions as a function of time.
#The figure is directly downloaded in the current directory.
hp.plot_graph(solution, "ion", required_nutriments, growth_time, volume)

One can determine the pH of the solution given the concentration of the ions with the pH_approximation function:

solution = {"K+":0.1, "Cl-": 0.3, "H2PO4(-)":0.5, "Ca(2+)":0.4}
temperature = 25 #°C
pH = hp.pH_approximation(solution, temperature)
print(pH)

See the "tutorial.ipynb" notebook for more complete examples.

Or visit hydroponics to see the full documentation of the package.


3. Datasets

This package uses data from the PRIF17 (link) and the wikipedia page about solubility (wiki).

Accuracy of the results of the package are not guaranteed.

Some solutions and plant compositions are predefined (bell pepper 🫑, cucumber 🥒 and eggplant 🍆), please define a new dict or complete the excel file to use other solutions and new plants.


4. Licence and References

This package is under MIT license.

Please click on the MIT sign for further information

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

better_hydroponics-0.1.2.tar.gz (75.6 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

better_hydroponics-0.1.2-py3-none-any.whl (46.2 kB view details)

Uploaded Python 3

File details

Details for the file better_hydroponics-0.1.2.tar.gz.

File metadata

  • Download URL: better_hydroponics-0.1.2.tar.gz
  • Upload date:
  • Size: 75.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.14

File hashes

Hashes for better_hydroponics-0.1.2.tar.gz
Algorithm Hash digest
SHA256 a82cc2e3fa0f1833f6d3a21c09edaab7e4e1c8246c14dd3081189234013d1f14
MD5 277afdc918334bfb58c42c814b75a431
BLAKE2b-256 5c8bd1a61a62ca665577f4ddce6d8d1bf4faf69667c4228637efd1d54ba523f3

See more details on using hashes here.

File details

Details for the file better_hydroponics-0.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for better_hydroponics-0.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 976a0f457ed82e34c34a0382878b461a0d64e0e3ddfe6bd4593fd397ed0ed159
MD5 e57dde25e142404bae7d4374c293a1ee
BLAKE2b-256 15eb70cf8ea2fa700d54cbee4ec2fcb12aef805c6b785318a283c3942819190d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page