roi.html 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>PrUn ROI</title>
  6. <link rel="stylesheet" type="text/css" href="style.css">
  7. <link rel="icon" href="https://www.raylu.net/hammer-man.svg" />
  8. <meta name="viewport" content="width=device-width, initial-scale=1">
  9. <meta name="theme-color" content="#222">
  10. </head>
  11. <body>
  12. <a href="/">← back</a>
  13. <main>
  14. <label><input type="checkbox" id="low-volume">show low volume</label>
  15. <table class="roi">
  16. <thead>
  17. <tr>
  18. <th>wrought<br>product</th>
  19. <th>expertise</th>
  20. <th data-tooltip="area includes worker habitation">daily<br>profit/area</th>
  21. <th>break<br>even</th>
  22. <th data-tooltip="construction cost of 1 building and fractional habitation">capex</th>
  23. <th data-tooltip="input and worker costs of 1 building (deterioration/repair not included)">daily<br>opex</th>
  24. <th data-tooltip="max of input and output t and m³ per area. 2 ≅ 2 SCB visits/day. 0.25 ≅ SCB visit every 4 days">logistics</th>
  25. <th data-tooltip="units output by 1 building over average daily traded">daily output<br>traded</th>
  26. </tr>
  27. </thead>
  28. <tbody></tbody>
  29. </table>
  30. </main>
  31. <footer>
  32. prices and traded volume are IC1/HRT from refined-price's 7-day volume-weighted average
  33. <br>FRM and ORC use 112.12% fertility (promitor's)
  34. </footer>
  35. <div id="popover" popover="hint"></div>
  36. <script src="roi.js"></script>
  37. </body>
  38. </html>