Cut-Off-Grade-Calculator/README.md

14 lines
No EOL
672 B
Markdown
Executable file
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Cut Off Grade Calculator
This Python script is designed to calculate the cut-off grade for use in Mining Economics. It begins by calculating the recovery using a logistic model based on the weighted average grade. Next, it estimates the processing cost through a regression model derived from actual cost data. Using the calculated recovery, processing cost, and net price, the script determines the cut-off grade. Finally, all calculations are visualized through a graph for better interpretation.
Cut-Off Grade = Processing Cost / ((Net Price) * Recovery)
Recovery = Rmax * (1 e^(k*G))
Processing Cost = a + b*G
# Author
Made by Batuhan Berk Başoğlu