index.html 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <main>
  13. <label><input type="checkbox" id="low-volume">show low volume</label>
  14. <table>
  15. <thead>
  16. <tr>
  17. <th>wrought<br>product</th>
  18. <th>expertise</th>
  19. <th>daily<br>profit/area</th>
  20. <th>break<br>even</th>
  21. <th data-tooltip="construction cost of 1 building">capex</th>
  22. <th data-tooltip="input and worker costs of 1 building (deterioration/repair not included)">daily<br>opex</th>
  23. <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>
  24. <th data-tooltip="units output by 1 building over average daily traded">daily output<br>traded</th>
  25. </tr>
  26. </thead>
  27. <tbody></tbody>
  28. </table>
  29. </main>
  30. <footer>
  31. prices and traded volume are IC1/HRT from refined-price's 7-day volume-weighted average
  32. <br>FRM and ORC use 112.12% fertility (promitor's)
  33. </footer>
  34. <div id="popover" popover="hint"></div>
  35. <script src="roi.js"></script>
  36. </body>
  37. </html>