Previous Thread
Next Thread
Print Thread
Rate This Thread
Hop To
Page 2 of 2 1 2
#4516462 - 04/15/20 01:01 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Nov 2018
Posts: 95
PatrykW Offline
Junior Member
PatrykW  Offline
Junior Member

Joined: Nov 2018
Posts: 95
Gillingham
Cool. Not an urgent thing as I believe there is a lot of other stuff that people are busy with but if you have time then please go for it and let me know if. I am working from home so have a bit of time to test things if needed (or dig some info out if needed).

#4516464 - 04/15/20 01:14 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2012
Posts: 1,382
thealx Offline
Member
thealx  Offline
Member

Joined: Dec 2012
Posts: 1,382
First thing is necessary to do - in Apache external object scene (AH64D_APACHE_LONGBOW.LWO), add extra WEAPON_SYSTEM_HEADING null objects, position them properly and set angles. I don't know is Rapota did it or not (example image is from scene with single dispenser), if he did - 50% of job is done.
But, don't forget that his mod is not required, so default scene should be fixed as well. Also we have 2 Apaches, so it will be 4 scenes (original and probably from Rapota's mod)

Second - in code (weapon/configs/apache.h) add extra dispensers, like

Code
		#define CHAFF_DISPENSER							(APACHE_CHAFF_DISPENSER)
		#define FLARE_DISPENSER							(APACHE_FLARE_DISPENSER+1)
		#define FLARE_DISPENSER2						(APACHE_FLARE_DISPENSER+2)


and add these dispensers in each of 50 weapon packages in same page. Does not really complicate, but anyway.

Attached Files scene.jpg
Last edited by thealx; 04/15/20 01:29 PM.
#4516465 - 04/15/20 01:14 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
I changed the amounts in the weapon configs, and it does change the amount in the game. But it can only be set using the hardcoded values.

So, should we change the amount to be more "realistic"? This would be for the base Apache model, not Rapota's one. Or maybe it could be set to something that's halfway, like 30 chaff, 60 flare?

#4516468 - 04/15/20 01:17 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
I just noticed thealx's post.

Should we set the default amount to something higher than it currently is, and then the extra dispensers could be done as an add-on mod?

#4516469 - 04/15/20 01:18 PM Re: Chaffs / flares amount [Re: messyhead]  
Joined: Dec 2012
Posts: 1,382
thealx Offline
Member
thealx  Offline
Member

Joined: Dec 2012
Posts: 1,382
Originally Posted by messyhead
I changed the amounts in the weapon configs, and it does change the amount in the game. But it can only be set using the hardcoded values.

So, should we change the amount to be more "realistic"? This would be for the base Apache model, not Rapota's one. Or maybe it could be set to something that's halfway, like 30 chaff, 60 flare?


just increasing amount - nope, not cool. dispensers should be inserted in the scene physically, so flares/chaffs will be launched from all of them, not the first one.

#4516472 - 04/15/20 01:22 PM Re: Chaffs / flares amount [Re: thealx]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
Originally Posted by thealx
just increasing amount - nope, not cool. dispensers should be inserted in the scene physically, so flares/chaffs will be launched from all of them, not the first one.


Yeah, fair enough. I was forgetting that one dispenser can only hold so much.

#4516473 - 04/15/20 01:23 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
Sounds like a mod for whoever wants to take it on biggrin

#4516482 - 04/15/20 02:20 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Nov 2018
Posts: 95
PatrykW Offline
Junior Member
PatrykW  Offline
Junior Member

Joined: Nov 2018
Posts: 95
Gillingham
Sounds like a fun mod. Anyway, original, bog standard model of AH64 had only one dispenser in the tail boom, poiting up, and it should only hold 30 countermeasures of one type so the whole chaff/flare count was a bit inaccurate. I had another look on the net and so far it appears that only one type (chaffs of flares) can be loaded into the dispenser). One dispenser = only one type of countermeasures available.

Rapota's model allows you to be more accurate with the actual amount and type of countermeasures as you have 3 dispensers therefore you can have 90 chaffs or flares, 30 chaffs 60 flares or 60 chaffs and 30 flares. Ok my head hurts now lol. I know, I could mess with the ini file and change countermeasures effectiveness but that would be less accurate.

#4516486 - 04/15/20 02:32 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
Originally Posted by PatrykW
Sounds like a fun mod. Anyway, original, bog standard model of AH64 had only one dispenser in the tail boom, poiting up, and it should only hold 30 countermeasures of one type so the whole chaff/flare count was a bit inaccurate. I had another look on the net and so far it appears that only one type (chaffs of flares) can be loaded into the dispenser). One dispenser = only one type of countermeasures available.

Rapota's model allows you to be more accurate with the actual amount and type of countermeasures as you have 3 dispensers therefore you can have 90 chaffs or flares, 30 chaffs 60 flares or 60 chaffs and 30 flares. Ok my head hurts now lol. I know, I could mess with the ini file and change countermeasures effectiveness but that would be less accurate.


I imagine in RL, they're even more configurable depending on the theater. For example, in Afghanistan, they probably carry mostly flares for all those stingers the US gave the Taliban in the 80's biggrin

#4516502 - 04/15/20 03:19 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2012
Posts: 1,382
thealx Offline
Member
thealx  Offline
Member

Joined: Dec 2012
Posts: 1,382
Originally Posted by PatrykW
Ok my head hurts now lol. I know, I could mess with the ini file and change countermeasures effectiveness but that would be less accurate.


FYI, in latest version with Simple avionics level chaffs and flares are infinity (unless they are not broken)

Originally Posted by PatrykW
Rapota's model allows you to be more accurate with the actual amount and type of countermeasures as you have 3 dispensers


First thing you'll need to check - are new dispensers just a models, or proper weapon hardpoints

Last edited by thealx; 04/15/20 03:21 PM.
#4516504 - 04/15/20 03:26 PM Re: Chaffs / flares amount [Re: messyhead]  
Joined: Nov 2018
Posts: 95
PatrykW Offline
Junior Member
PatrykW  Offline
Junior Member

Joined: Nov 2018
Posts: 95
Gillingham
Originally Posted by messyhead
I'm going to have a play around with the weapon configs. I don't think it'll be possible have configurable amounts without changing the code so it could be set on the payload screen. But I'll try increasing the amount in the configs and see if it works.


Thanks! smile

#4516709 - 04/16/20 04:14 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
Looks like I'll need to do this mod on my Blackhawk project, so I could do one for the Apache at the same time, but make it a separate mod for use with Rapotas model. I plan on using Rapotas Blackhawk model in my mod too, and I found that the model I'm making has a chaff and flare dispenser on each side. Normally they're only on the left side, but I've found images with them on both sides.

Attached Files mh60_chaff_flare.jpgmh-60-black-hawk-fast-rope-hr.jpgmh-60l-blackhawk-hr.jpg
#4516752 - 04/16/20 07:41 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Nov 2018
Posts: 95
PatrykW Offline
Junior Member
PatrykW  Offline
Junior Member

Joined: Nov 2018
Posts: 95
Gillingham
Ok, got to the bottom of it.

Older countermeasures dispenser, M130 could hold up to 30 flares or chaff, and you were only able to load a single type of countermeasures per dispenser. M130 became obsolete, more modern dispenser now is AN/ALE-47. This is fitted to Black, Apache and other helicopters. 30 countermeasures that can be mixed in one dispenser so in theory you can mix the amount of chaff and flares. Now you just need to figure out how many of these dispensers are fitted to Uh60.

To make this even more complicated, Rapota's Ah64d model appears to have 3 M130 dispensers (they have a different shape compared to AN/ALE-47) and countermeasures can't be mixed so 30/60, 60/30 or 90 combo would be correct. Hope that this makes things clear...a bit lol 😁

Bottom line AN/ALE-47 - 30 chaffs/flares mix
M130 - 30 chaffs OR flares, no mix

#4516756 - 04/16/20 08:00 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
The blackhawk model I'm doing definitely has them. You can see the dispensers on this walkaround, and I've got cockpit photos showing the control panel

http://www.aircraftresourcecenter.com/awa01/401-500/awa465-UH-60-Spenard/00.shtm

I'll just need to redo the dispensers on the model.

#4516759 - 04/16/20 08:08 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
I think though, that the way the code is now, is that it is a mixed dispenser. The total flares and chaff by default is 10 chaff and 20 flare. So that fits with what you've said about the ale-47. That would be one ale-47 dispenser.

#4516762 - 04/16/20 08:36 PM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: Nov 2018
Posts: 95
PatrykW Offline
Junior Member
PatrykW  Offline
Junior Member

Joined: Nov 2018
Posts: 95
Gillingham
Cool.

I'm not on my PC at the moment but ideally it would be good to see how this looks on the actual EECH model to be accurate.

Not sure what's the best approach - set the amount of countermeasures according to the amount of dispensers ignoring the models of the actual disepnsers or be super accurate and allow a specific amount of countermeasures based on EECH 3D model (how many dispensers and what models)

I can only do some info digging. Unfortunately my coding skills are non existent. Sorry

UPDATE:

Also found this that might be useful for your UH-60 mods:

https://forums.eagle.ru/showthread.php?t=30834&page=8

"UH-60A

"Defensive equipment includes the AN/APR-39 radar warn*ing receiver, AN/ALQ-144 IR-missile jammer, and twin M130 flare/chaff dispensers. The dispensers can be loaded with M206 flares and RR-170 chaff bundles."
Source: http://www.sjgames.com/pyramid/sample.html?id=4872

The M130 dispenser can be loaded with 30 flares or chaff cartriges, seems as you can mix anyway you want.
UPDATE, found this source: http://www.fas.org/man/dod-101/sys/ac/equip/m-130.htm that indicates that the dispenser can only be loaded with either flares or chaff, i.e. no mixing.

"The capability to dispense both flare and chaff decoys can be achieved by adding a second dispenser assembly and payload module assembly to the aircraft."



Source: http://tri.army.mil/lc/cs/Csa/apm130.htm

I Can't find any info on typical loadout. But there's apparently only three possibilities. 30 flares and 30 chaff or 60 flares or 60 chaff."

Last edited by PatrykW; 04/16/20 09:57 PM.
#4516816 - 04/17/20 07:53 AM Re: Chaffs / flares amount [Re: PatrykW]  
Joined: May 2013
Posts: 413
SKIP2008 Offline
Member
SKIP2008  Offline
Member

Joined: May 2013
Posts: 413
ITALY
Hi, sorry for the intromission, but i've noticed that Rapota's OH58D is fitted with M130 dispenser (under the fuselage), maybe chaff or flares could be reintroduced to this aircrat also.

#4516843 - 04/17/20 11:14 AM Re: Chaffs / flares amount [Re: SKIP2008]  
Joined: Dec 2010
Posts: 1,883
messyhead Offline
Member
messyhead  Offline
Member

Joined: Dec 2010
Posts: 1,883
Originally Posted by SKIP2008
Hi, sorry for the intromission, but i've noticed that Rapota's OH58D is fitted with M130 dispenser (under the fuselage), maybe chaff or flares could be reintroduced to this aircrat also.


I think if a mod that updates model exteriors adds things like chaff/flare dispensers, then that mod should also include an updated exe to make them functional. Or someone creates an accompanying exe to the models to enable those features (i.e. if the person doing the models doesn't have coding experience). Otherwise anything added like that will be cosmetic only.

The base game can't be updated as it won't have those models in them by default, and I think from now on, any mods will be uploaded as add-ons rather than change the base source code. That's the way my Blackhawk mod will be distributed. And now we have the mod installer from thealx, it makes it easier to install them.

Page 2 of 2 1 2

Moderated by  RacerGT 

Quick Search
Recent Articles
Support SimHQ

If you shop on Amazon use this Amazon link to support SimHQ
.
Social


Recent Topics
Dickey Betts was 80
by Rick_Rawlings. 04/19/24 01:11 AM
Exodus
by RedOneAlpha. 04/18/24 05:46 PM
Grumman Wildcat unique landing gear
by Coot. 04/17/24 03:54 PM
Peter Higgs was 94
by Rick_Rawlings. 04/17/24 12:28 AM
Whitey Herzog was 92
by F4UDash4. 04/16/24 04:41 PM
Anyone can tell me what this is?
by NoFlyBoy. 04/16/24 04:10 PM
10 Years ago MV Sewol
by wormfood. 04/15/24 08:25 PM
Pride Of Jenni race win
by NoFlyBoy. 04/15/24 12:22 AM
It's Friday: grown up humor for the weekend.
by NoFlyBoy. 04/12/24 01:41 PM
OJ Simpson Dead at 76
by bones. 04/11/24 03:02 PM
Copyright 1997-2016, SimHQ Inc. All Rights Reserved.

Powered by UBB.threads™ PHP Forum Software 7.6.0