(This post was last modified: 03.09.2010, 11:35 by Lekensteyn.)
03.09.2010, 11:34
This is the formula to get the right $config['agreement_per_hour']:
So if your speed is 50000, and you want the agreement to rise by 0.5% per hour, this will be your calculation:
PHP Code:
$config['agreement_per_hour'] = ($agreement_per_second * 3600) / $config['speed'];
So if your speed is 50000, and you want the agreement to rise by 0.5% per hour, this will be your calculation:
Code:
( 0.5 * 3600 ) / 50000 = 0.036
Found my post helpful? Rate me
Project: creating a compact and easy to setup DSLan (Linux) (Windoze is in development)