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

Journal Type for Watering #37

Open
Nostradamos opened this issue Oct 28, 2017 · 0 comments
Open

Journal Type for Watering #37

Nostradamos opened this issue Oct 28, 2017 · 0 comments

Comments

@Nostradamos
Copy link
Owner

Nostradamos commented Oct 28, 2017

Requirements:

  • Scale unit should be liters
  • Total amount of water applied (including ingredients and drain)
  • Nutrients (total) (across all ingredients)
  • EC (total)
  • PH (total)
  • Possible ingredients:
    • Fertilizers/Supplements
    • Insecticides
    • PH Plus/Minus
  • Ingredients
  • Total amount of drain

Example #1

Watering 2l of water, nothing more.

{
  amount: 2,
}

Example #2

Watering 2l of water, with some nutrients and PH/EC value

{
  amount: 2,
  nutrients: {
    n: 1,
    p: 8,
    k: 10,
    mg: 1
  },
  ec: 1.7,
  ph: 6.8
}

Example #3
Watering 2l of water with 2ml of Hakaphos Blau (15+10+15(+2)) and 1ml of Hakaphos Rot (8+12+24(+4)).

{
  amount: 2,
  nutrients: {
    n: 12.6667,
    p: 10.6667,
    k: 18,
    mg: 2.6667
  },
  ingridients: {
    'Hakaphos Blau': {
      type: 'fertilizer',
      amount: 0.002,
      nutrients: {
        n: 15,
        p: 10,
        k: 15,
        mg: 2
      }
    },
    'Hakaphos Rot': {
      type: 'fertilizer',
      amount: 0.001,
      nutrients: {
        n: 8,
        p: 12,
        k: 24,
        mg: 4
      }
    }

  }
  ec: 1.7,
  ph: 6.8
}

Example #4

Watering 4l of water with 2l of drain

{
  amount: 4,
  drain: 2
}

Example #5

Watering 2.5l of water, with 5ml of NEEM OIL (organic insecticide)

{
  amount: 4,
  ingredients: {
    'Neem oil': {
      type: 'insecticide',
      amount: 0.005
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant