We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Requirements
Mother Solution = Chlorine mixture that flows to the reservoir during a chlorination process
The formula is for finding the approximate mother solution necessary for a proper chlorination process.
Here is the formula, which is also included in the file src/app/mother-solution-concentration/page.tsx
src/app/mother-solution-concentration/page.tsx
var mother_solution_volume = 600 // liters var weight_of_chlorine = 100 // grams var desired_reservoir_concentration = 1 // miligrams/liter var concentration_mother_solution = ( weight_of_chlorine * 10 * desired_reservoir_concentration ) / mother_solution_volume // miligrams/liter
var mother_solution_volume = 600 // liters var weight_of_chlorine = 100 // grams var desired_reservoir_concentration = 1 // miligrams/liter
var concentration_mother_solution = ( weight_of_chlorine * 10 * desired_reservoir_concentration ) / mother_solution_volume // miligrams/liter
Criteria of Success
The text was updated successfully, but these errors were encountered:
jackmaggio
No branches or pull requests
Requirements
Mother Solution = Chlorine mixture that flows to the reservoir during a chlorination process
The formula is for finding the approximate mother solution necessary for a proper chlorination process.
Here is the formula, which is also included in the file
src/app/mother-solution-concentration/page.tsx
Criteria of Success
The text was updated successfully, but these errors were encountered: