added dry beans

This commit is contained in:
csawatzky 2025-07-21 13:21:19 -06:00
parent e874792707
commit ed8ba4b3e4
3 changed files with 34 additions and 3 deletions

View file

@ -475,6 +475,37 @@ export const GrainExtensions: Map<pond.Grain, GrainExtension> = new Map([
weightConversionKg: 27.2158214642112,
bushelsPerTonne: 36.744
}
],
[
pond.Grain.GRAIN_DRY_BEANS_RED,
{
name: "Dry Beans Red",
group: "Dry Beans",
equation: Equation.halsey,
a: 4.2669,
b: -0.013382,
c: 1.6933,
setTempC: defaultSetTemp,
targetMC: 15.0,
colour: "red",
weightConversionKg: 27.2155,
bushelsPerTonne: 36.744
}
],[
pond.Grain.GRAIN_CUSTOM,
{
name: "Dry Beans Black",
group: "Dry Beans",
equation: Equation.halsey,
a: 5.2003,
b: -0.022685,
c: 1.9656,
setTempC: defaultSetTemp,
targetMC: 15.0,
colour: "grey",
weightConversionKg: 27.2155,
bushelsPerTonne: 36.744
}
]
]);