Hello,
I am trying to do an Excel spreadsheet of the amount of coins generated in mining an SCRYPT based coin per day.
Here is what I have so far, based on what I pulled from various online sources:
Number of Coins in Block Reward,
which I will call N, divided by the following:
Difficulty multiplied by two (2) to the power of thirty two (32)
OR
Diff*2^32 : lets call that D
This entire amount divided by the hash rate, which I will call H
so D/H so far.
Divide this entire amount by 3600 (or the minutes in the day?) which I will call M.
so now (D/H) / M
Now take that final amount and divide it by the number of hours in the day, or 24 which I will shorten to day.
so now ((D/H) / M) / Day
So that leads me to the following equation (using my abbreviations above).
N / (((D/H) / M) / Day)However, this calculation is off as when I plug the numbers in the final amount is incorrect.
Can anyone help me with getting the correct equation? Also if you can break down what is divided by what that would be great.
I am not the best at math but I try