Author

Topic: Calculate mining stats (Read 890 times)

full member
Activity: 129
Merit: 100
full member
Activity: 238
Merit: 100
Bitcoin For All
August 07, 2013, 08:52:09 PM
#9
Here is a simple R script as well

# FutureDifficulty <- http://blockexplorer.com/q/estimate
# H = HashRate
# R is the Current Reward (25BTC)
# Prints out Coins per day in BTC or fractions

CurrDiff <-readLines("http://blockexplorer.com/q/getdifficulty")
D <- as.numeric(CurrDiff)

#Set Hash Rate in Next Line

H=1600
R=25
BTC_Day <- 24 / (D * 2^32 / (H * 10^6) / 60 / 60) * R
BTC_Day

The Final Line simply outputs the BTC per day to the R COnsole.
legendary
Activity: 1190
Merit: 1001
August 04, 2013, 07:11:13 AM
#8
http://mineforeman.com/services/bitcoin-mining-calculator/

It's another mining calculator sorry, BUT it does have the equation at the bottom of it as well as a quick explanation.

Neil

Thanks perfect:

Quote
Where D = Difficulty H = MH/s R = Block Reward

24 / (D * 2^32 / (H * 10^6) / 60 / 60) * R = BTC/day .
hero member
Activity: 552
Merit: 500
August 04, 2013, 01:35:36 AM
#7
Best one I have seen http://mining.thegenesisblock.com/
legendary
Activity: 896
Merit: 1000
August 04, 2013, 01:33:56 AM
#6
http://mineforeman.com/services/bitcoin-mining-calculator/

It's another mining calculator sorry, BUT it does have the equation at the bottom of it as well as a quick explanation.

Neil
legendary
Activity: 1190
Merit: 1001
August 03, 2013, 08:21:46 PM
#5

I'm looking for the equations used by the calculators, not the calculator itself.
member
Activity: 86
Merit: 10
legendary
Activity: 1190
Merit: 1001
August 02, 2013, 07:39:08 PM
#3
Here is one of many.  Try your Google-fu for others.

http://www.alloscomp.com/bitcoin/calculator



Yes I was wondering if someone could just give me the simplified equation, without having to go through the Python script and extract it.
member
Activity: 88
Merit: 10
August 02, 2013, 04:35:16 PM
#2
Here is one of many.  Try your Google-fu for others.

http://www.alloscomp.com/bitcoin/calculator

legendary
Activity: 1190
Merit: 1001
August 02, 2013, 11:31:45 AM
#1
Can anyone give me the equation in order to calculate the estimated bitcoins mined per day, given the difficulty and miner's hashrate?
Jump to: