From: 2weiEmu Date: Wed, 4 Feb 2026 22:27:57 +0000 (+0100) Subject: updated broken tables X-Git-Url: https://git.saalbach.dev/?a=commitdiff_plain;h=17e200d1589819d19ea48bf3b6336302e345f7da;p=research-obsidian.git updated broken tables --- diff --git a/.obsidian/workspace.json b/.obsidian/workspace.json index f82e2f3..ca5b615 100644 --- a/.obsidian/workspace.json +++ b/.obsidian/workspace.json @@ -178,8 +178,9 @@ "active": "04094233c3d02ad2", "lastOpenFiles": [ "Nebulous Command/calc.py~", - "Nebulous Command/4913", + "Nebulous Command/missile-simulator.py~", "List of things to do.md", + "Nebulous Command/4913", "Nebulous Command/calc.py", "Nebulous Command/Notes on Mechanics.md~", "Nebulous Command/Notes on Mechanics.md", @@ -213,7 +214,6 @@ "University/Algorithm Design/Full Notes - Run 2.md", "Pasted image 20251207164533.png", "Daily/16-01-2025.md", - "Bundesverfassungsgericht/Urteil_des_Ersten_Senats_vom_5_November_2019.pdf", "Pasted image 20251106230015.png", "Pasted image 20251106225651.png", "Pasted image 20251106225645.png", diff --git a/Nebulous Command/Notes on Mechanics.md b/Nebulous Command/Notes on Mechanics.md index bea2ef3..aad6ea5 100644 --- a/Nebulous Command/Notes on Mechanics.md +++ b/Nebulous Command/Notes on Mechanics.md @@ -10,6 +10,7 @@ If the person is able to find the launch platform, providing intel for your carr ## Cross-sections The cross sections of different ships + | Ship | Cross Section (m^2) | -10% | -25% | -35% | | -------------------- | ------------------- | -------- | -------- | -------- | | Sprinter (Corvette) | 2890 | 2601 | 2167.5 | 1878.5 | @@ -115,17 +116,18 @@ Jammer radiated power $P_j$ Gain $G_j$ Distance $d$ $$j=\frac{P_jG_j}{4\pi d^2}$$ -|Jammer power[[1]](https://wiki.hoodedhorse.com/NEBULOUS_Fleet_Command/Electronic_Warfare#cite_note-1)|Multiplier per Jammer|Total[[2]](https://wiki.hoodedhorse.com/NEBULOUS_Fleet_Command/Electronic_Warfare#cite_note-2)| -|---|---|---| -|Strongest Jammer|1.000|1.000| -|2nd Strongest|0.876|1.876| -|3rd Strongest|0.589|2.465| -|4th|0.304|2.770| -|5th|0.121|2.890| -|6th|0.037|2.927| -|7th|0.009|2.935| -|8th|0.002|2.937| -|9th|<0.001|2.937| + +| Jammer power[[1]][EW Page](https://wiki.hoodedhorse.com/NEBULOUS_Fleet_Command/Electronic_Warfare#cite_note-1) | Multiplier per Jammer | Total[[2]][EW Page 2](https://wiki.hoodedhorse.com/NEBULOUS_Fleet_Command/Electronic_Warfare#cite_note-2) | +| -------------------------------------------------------------------------------------------------------------- | --------------------- | --------------------------------------------------------------------------------------------------------- | +| Strongest Jammer | 1.000 | 1.000 | +| 2nd Strongest | 0.876 | 1.876 | +| 3rd Strongest | 0.589 | 2.465 | +| 4th | 0.304 | 2.770 | +| 5th | 0.121 | 2.890 | +| 6th | 0.037 | 2.927 | +| 7th | 0.009 | 2.935 | +| 8th | 0.002 | 2.937 | +| 9th | <0.001 | 2.937 | Stats for the Self-Screening Jammer and Boosted Version: diff --git a/Nebulous Command/__pycache__/calc.cpython-314.pyc b/Nebulous Command/__pycache__/calc.cpython-314.pyc index 9687afa..aabdcd0 100644 Binary files a/Nebulous Command/__pycache__/calc.cpython-314.pyc and b/Nebulous Command/__pycache__/calc.cpython-314.pyc differ diff --git a/Nebulous Command/calc.py b/Nebulous Command/calc.py index 1a9f996..b515d8f 100644 --- a/Nebulous Command/calc.py +++ b/Nebulous Command/calc.py @@ -46,6 +46,12 @@ ships = [ Ship("SGM-H-200 Cyclone", 625), Ship("SGM-H-300 Atlatl", 1600), Ship("CM300 Container", 1600), + Ship("Side / SGM-100 Balestra", 400), + Ship("Side / SGM-200 Tempest", 950), + Ship("Side / SGT-300 Pilum", 2400), + Ship("Side / SGM-H-200 Cyclone", 950), + Ship("Side / SGM-H-300 Atlatl", 3600), + Ship("Side / CM300 Container", 4000), ] diff --git a/Nebulous Command/missile-simulator.py b/Nebulous Command/missile-simulator.py index 581462b..c514518 100644 --- a/Nebulous Command/missile-simulator.py +++ b/Nebulous Command/missile-simulator.py @@ -6,6 +6,7 @@ import math HEIGHT = 540 WIDTH = 960 + def calculate_return_power_density( radiated_power, gain, rcs, aperture_size, distance) -> float: numerator = radiated_power * (gain ** 2) * (rcs / 10) * aperture_size