Bitcoin Forum
May 03, 2024, 03:52:41 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: [1]
  Print  
Author Topic: Calculate mining stats  (Read 885 times)
dave111223 (OP)
Legendary
*
Offline Offline

Activity: 1190
Merit: 1001


View Profile WWW
August 02, 2013, 03:31:45 PM
 #1

Can anyone give me the equation in order to calculate the estimated bitcoins mined per day, given the difficulty and miner's hashrate?
1714708361
Hero Member
*
Offline Offline

Posts: 1714708361

View Profile Personal Message (Offline)

Ignore
1714708361
Reply with quote  #2

1714708361
Report to moderator
1714708361
Hero Member
*
Offline Offline

Posts: 1714708361

View Profile Personal Message (Offline)

Ignore
1714708361
Reply with quote  #2

1714708361
Report to moderator
"Governments are good at cutting off the heads of a centrally controlled networks like Napster, but pure P2P networks like Gnutella and Tor seem to be holding their own." -- Satoshi
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714708361
Hero Member
*
Offline Offline

Posts: 1714708361

View Profile Personal Message (Offline)

Ignore
1714708361
Reply with quote  #2

1714708361
Report to moderator
1714708361
Hero Member
*
Offline Offline

Posts: 1714708361

View Profile Personal Message (Offline)

Ignore
1714708361
Reply with quote  #2

1714708361
Report to moderator
mccminer
Member
**
Offline Offline

Activity: 88
Merit: 10


View Profile
August 02, 2013, 08:35:16 PM
 #2

Here is one of many.  Try your Google-fu for others.

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

dave111223 (OP)
Legendary
*
Offline Offline

Activity: 1190
Merit: 1001


View Profile WWW
August 02, 2013, 11: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.
NR3000
Member
**
Offline Offline

Activity: 86
Merit: 10



View Profile
August 03, 2013, 08:41:33 PM
 #4

http://lmgtfy.com/?q=bitcoin+calculator

dave111223 (OP)
Legendary
*
Offline Offline

Activity: 1190
Merit: 1001


View Profile WWW
August 04, 2013, 12:21:46 AM
 #5


I'm looking for the equations used by the calculators, not the calculator itself.
MineForeman.com
Legendary
*
Offline Offline

Activity: 896
Merit: 1000



View Profile WWW
August 04, 2013, 05: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

Bitcoin News http://mineforeman.com/ || MinePeon - Bitcoin mining on the Raspberry PI http://mineforeman.com/minepeon/ || MinePeon Wiki http://minepeon.com/ || MinePeon Forums http://minepeon.com/forums/
gateway
Hero Member
*****
Offline Offline

Activity: 552
Merit: 500


View Profile
August 04, 2013, 05:35:36 AM
 #7

Best one I have seen http://mining.thegenesisblock.com/
dave111223 (OP)
Legendary
*
Offline Offline

Activity: 1190
Merit: 1001


View Profile WWW
August 04, 2013, 11: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 .
davewr2013
Full Member
***
Offline Offline

Activity: 238
Merit: 100

Bitcoin For All


View Profile
August 08, 2013, 12:52:09 AM
 #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.

Give me this day my daily Bitcoin...
Houseonfire
Full Member
***
Offline Offline

Activity: 129
Merit: 100


View Profile
August 09, 2013, 02:34:33 AM
 #10

http://www.alloscomp.com/bitcoin/calculator.pys
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!