Bitcoin Forum
May 06, 2024, 07:15:21 PM *
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?
1715022921
Hero Member
*
Offline Offline

Posts: 1715022921

View Profile Personal Message (Offline)

Ignore
1715022921
Reply with quote  #2

1715022921
Report to moderator
1715022921
Hero Member
*
Offline Offline

Posts: 1715022921

View Profile Personal Message (Offline)

Ignore
1715022921
Reply with quote  #2

1715022921
Report to moderator
1715022921
Hero Member
*
Offline Offline

Posts: 1715022921

View Profile Personal Message (Offline)

Ignore
1715022921
Reply with quote  #2

1715022921
Report to moderator
There are several different types of Bitcoin clients. The most secure are full nodes like Bitcoin Core, but full nodes are more resource-heavy, and they must do a lengthy initial syncing process. As a result, lightweight clients with somewhat less security are commonly used.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1715022921
Hero Member
*
Offline Offline

Posts: 1715022921

View Profile Personal Message (Offline)

Ignore
1715022921
Reply with quote  #2

1715022921
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!