Complete tissue culture and hydroponics toolkit. Step-by-step walkthrough for beginners, nutrient calculators, equipment guides, and sterilization protocols.
- Nutrient Calculators: Calculate exact fertilizer mixes for target EC/pH
- Sterilization Protocols: Customizable sterilization steps based on plant type
- Equipment Guides: Budget-conscious setup recommendations
- Troubleshooting Database: Diagnose common tissue culture problems
bun add fertigation-mix
# or
npm install fertigation-mixCalculate required stock solution volumes:
import { calculateStockVolumes } from 'fertigation-mix';
const stocks = [
{
id: 'calcium-nitrate',
dilutionFactor: 100,
constituents: [{ nutrientId: 'calcium-nitrate', gramsPerLiter: 100 }]
}
];
const result = calculateStockVolumes(
{ ecTarget: 1.5, totalVolumeLiters: 10 },
stocks
);
console.log(`Stock volumes: ${JSON.stringify(result.stockVolumes)}`);
console.log(`Water needed: ${result.waterVolume}ml`);git clone https://github.com/AdametherzLab/fertigation-mix
cd fertigation-mix
bun install
bun testMIT © AdametherzLab