User Tools

Site Tools


a3_documentation:cvwp:sraam

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
a3_documentation:cvwp:sraam [2025/05/15 23:15] rocka3_documentation:cvwp:sraam [2025/11/09 01:54] (current) rock
Line 3: Line 3:
 All the values and ranges I'm using are all calculated relative to the BIS Short Range missile class: All the values and ranges I'm using are all calculated relative to the BIS Short Range missile class:
  
-{{:a3_documentation:cvwp:sraam_range_scale.png?nolink}}+===== HERE IS THE LOGIC=====
  
-Here is the logic.+Most of BIS' values for SRAAM aren't much different than the ammo_Missile_ShortRangeAABase class values. Normally you should find a weapon in game that you can find the real world equivalent of and get the specs. BIS actually has, what they are calling the "BIM9X", which logically should equate to the AIM-9X. The problem with that is that is the AIM-9X has a supposed range of ~34km. So thats not really a good choiceSo we are going to make an assumption or two:
  
-Most of BISvalues for SRAAM aren't much different than the ammo_Missile_ShortRangeAABase class valuesSo lets assume:+**Assumption #1** - With a bit of research you can find that the 'averagerange of the __real world__ short range air-to-air missiles (SRAAM) comes to something like 16kmThis is now our "DATUM Weapon Real World MAX Range"
  
->**Assumption #1** - With a bit of research you can find that the 'average' range of the __real world__ short range air-to-air missiles (SRAAM) comes to something like 16km.+**Assumption #2** - the __real__ world ranges of the weapons we are looking at are:
  
->**Assumption #2** - In the armaverse 5000m (5Km) is equivalent to 14000m (14km). The 5000m comes from the max range BIS specified.+  A-Darter = 22km 
 +  AIM-9M = 20km 
 +  * Python 3 = 15km.
  
-Now comes the maths:+**Assumption #3** -  __For this class or weapon__ and in the armaverse 5000m (5Km) is equivalent to 16000m (16km) in the real world. The 5000m comes from the max range BIS specified.
  
-''   (Real World MAX Range) / (Assumed Average Range) = "RangeRatio"  ''+Now comes the maths here is an example.
  
-For example the Aim-9M max range is given as ~20km. So:+<code c> 
 +   (Range of the weapon you are configing) / (DATUM Weapon Real World MAX Range) = "RangeRatio"   
 +</code> 
 + 
 +So when we apply some real world figures we get a ration compared to the ingame "DATUM Weapon Real World MAX Range" we have chosen: 
 + 
 +<code c> 
 +  A-Darter (22km) / (16km) = "1.375"  
 +  AIM-9M   (20km) / (16km) = "1.25"  
 +  Python 3 (15km) / (16km) = "0.9375" 
 +</code> 
 + 
 +You can see by the results the figure you get is the "ratio" compared to our "Datum weapon"  Now we have the "RangeRatio" we can multiply that by BIS's 5km max range value to give us the 'Adjusted/scaled range' for our new missile. 
 + 
 +<code c> 
 +   (BIS MaxRange) * (RangeRatio) = "NewScaledRange" 
 +  
 +A-Darter =   (5km) / (1.375) = "6.875 (Km)" = "6875m" 
 +AIM-9M =   (5km) / (1.25) = "6.25 (Km)" = "6250m" 
 +Python 3 =   (5km) / (0.9375) = "4.6875 (Km)" = "4687.5m" 
 +</code> 
 + 
 +We may massage/fudge the values a bit to balance things out a bit. Some of the older weapons ranges when using this method come out to about 1km in some cases. So we may give them a little bit of help.
  
-''   (20km) / (16km) = 1.25   ''+That is it. The entire logic behind how we chose the range values of our weapons.
  
-Now we have the "RangeRatio" we can multiply that by BIS's 5km max range value to give us the 'Adjusted/scaled range' for our new missile.+===== SOURCES =====
  
-''   (BIS MaxRange) * (RangeRatio) = "NewScaledRange"  ''+  - [[https://en.wikipedia.org/wiki/AIM-9_Sidewinder]] 
 +  - [[https://www.af.mil/News/Art/igphoto/2000427151/#:~:text=Range%3A%2010%20miles]].
  
-''   (5km) / (1.25) = 6.25 (Km) = 6250m   ''+Ammo class from \A3\weapons_f_jets\config.cpp ~Line 144
  
 <code c> <code c>
Line 96: Line 121:
  effectsMissile = "FX_Missile_AA";  effectsMissile = "FX_Missile_AA";
  muzzleEffect = "B01_fnc_effectFiredJetMissile";  muzzleEffect = "B01_fnc_effectFiredJetMissile";
 +};
 +class ammo_Missile_BIM9X: ammo_Missile_ShortRangeAABase
 +{
 + model = "\A3\Weapons_F_Jets\Ammo\Missile_AA_08_fly_F";
 + proxyShape = "\A3\Weapons_F_Jets\Ammo\Missile_AA_08_F";
 }; };
 </code> </code>
  
  
a3_documentation/cvwp/sraam.1747350935.txt.gz · Last modified: by rock