Jump to content

[1.12.x] Sounding Rockets! Start small. Dream big!


RoverDude

Recommended Posts

The mini battery pack needs a little balancing, the Z-100 is only twice the mass at half the cost and has 20 times the juice as this thing.

Maybe giving it 50 charge is a bit much, but how about some love to make it balance better?

- - - Updated - - -

Also...while trying these out I realized that I seem to have forgotten some basic rocket engineering 101 and cannot find where to look it up.

For rockets, the Center of Lift should preferably be below the center of mass right, can they overlap as long as it is not above and still be stable? What about the Center of Thrust and Center of Lift?

Link to comment
Share on other sites

The mini battery pack needs a little balancing, the Z-100 is only twice the mass at half the cost and has 20 times the juice as this thing.

Maybe giving it 50 charge is a bit much, but how about some love to make it balance better?

- - - Updated - - -

Also...while trying these out I realized that I seem to have forgotten some basic rocket engineering 101 and cannot find where to look it up.

For rockets, the Center of Lift should preferably be below the center of mass right, can they overlap as long as it is not above and still be stable? What about the Center of Thrust and Center of Lift?

By design because they are a starter battery.

I don't know if anyone noticed my post in the middle of this Gfurst-Roverdude conversation about Aerodynamics:rolleyes:

Discussed earlier in the thread, keeping those as-is. If anything I might up their mass/form factor a bit.

Link to comment
Share on other sites

Also...while trying these out I realized that I seem to have forgotten some basic rocket engineering 101 and cannot find where to look it up.

For rockets, the Center of Lift should preferably be below the center of mass right, can they overlap as long as it is not above and still be stable? What about the Center of Thrust and Center of Lift?

As I understand it, ideally the CoL should be below the CoM, but above the CoT. You can maybe actually get away with having the CoL above the CoM a little as long as your rocket goes straight up - the slightest tilt in any direction and it'll probably flip out. Spin can also help to keep it stable with a high CoL. You also have to bear in mind how the CoM shifts as fuel gets used up - although normally for rockets the CoM moves upwards, making them more stable.

Link to comment
Share on other sites

So, I found a workaround for the double chute issue with the smaller nosecone parachute when using FAR or Gfurst's RealChute patch:


@PART[SR_Nosecone_35]:FINAL
{
!MODEL,1 {}
}

It removes the pack chute model. It's a bit of an ugly hack, and I'm sure there's a more elegant way to do it - but at least it works.

Edited by UnanimousCoward
edit mm code
Link to comment
Share on other sites

It removes the pack chute model. It's a bit of an ugly hack, and I'm sure there's a more elegant way to do it - but at least it works.

I'm not MM expert but I think using selection by index should help to make it more clean.

- - - Updated - - -

Checked this

@PART[sR_Nosecone*]

{

-MODEL,1 {}

}

Works as expected. More clean way will be to add check to apply this patch only if FAR is installed.

Edited by prog
Link to comment
Share on other sites

I'm not MM expert but I think using selection by index should help to make it more clean.

- - - Updated - - -

Checked this

@PART[sR_Nosecone*]

{

-MODEL,1 {}

}

Works as expected. More clean way will be to add check to apply this patch only if FAR is installed.

Yeah - I'm learning MM as I go, and I was just editing my MM code to use the index when you posted this. :D

I didn't use "SR_Nosecone*" because the problem only affects the smaller nosecone. For some reason, the large nosecone works fine, even though it uses the same pack chute model.

The reason it doesn't specify that it needs FAR is that I wanted it to work for Gfurst's RealChute patch as well. I could have used "NEEDS:[FerramAerospaceResearch|RealChute]", I suppose, but that doesn't check whether you're actually using Gfurst's patch; as far as I know there's no way to do that.

In any event, AFAIK it would only make a slight visual change if you're not using FAR/Gfurst's patch, so it's not going to affect gameplay. I guess the cleanest way would be to post modified versions of both my FAR patch and Gfurst's RealChute patch...

Edited by UnanimousCoward
Link to comment
Share on other sites

With regard to the problems people are having with fragile components, I don't think the components are too fragile - at least in some cases. It's been mentioned before: it's down to some weird interaction between the truss and the terrain.

In my tinkering, I've been increasing the crash tolerance of the parts. I've noticed that no matter what its crash tolerance is, the truss sometimes explodes on impact with the ground - even if its crash tolerance is 100 m/s and it lands at 4 m/s! In every case, this appears in the log:

Vessel 1 crashed through terrain on Kerbin

...

SR.PayloadTruss.35 Exploded!! - blast awesomeness: 0.1

A bit of googling indicates that it's to do with the terrain mesh. So, if you've been having this problem - go to the KSP settings and make sure terrain detail is set to "high". It's helped for me.

As has also been mentioned before, if it happens with water landings, Better Buoyancy should help.

Edited by UnanimousCoward
typo
Link to comment
Share on other sites

I've created a modified ScienceDefs.cfg

This pretty much reduces the science to a minuscule amount (Cap of 1 for each biome) and the experiments only work in a atmosphere (Obviously not in space).

This is for people who just want to play with the rockets without the experiments becoming OP.

Just replace the contents of ScienceDefs.cfg with this.


EXPERIMENT_DEFINITION
{
id = SRExperiment01
title = Meteorological Experiments
baseValue = 1
scienceCap = 1
dataScale = 1
requireAtmosphere = True
situationMask = 12
biomeMask = 62
RESULTS
{
default = You perform a series of experiments on the local weather patterns.
}
}


EXPERIMENT_DEFINITION
{
id = SRExperiment02
title = Aeronomical Experiments
baseValue = 1
scienceCap = 1
dataScale = 1
requireAtmosphere = True
situationMask = 12
biomeMask = 12
RESULTS
{
default = You perform a series of experiments on gravitational effects and atmospheric data.
}
}


EXPERIMENT_DEFINITION
{
id = SRExperiment03
title = Materials Experiments
baseValue = 1
scienceCap = 1
dataScale = 0
requireAtmosphere = True
situationMask = 12
biomeMask = 12
RESULTS
{
default = You perform a series of experiments on various structural and biological compounds.
}
}


EXPERIMENT_DEFINITION
{
id = SRExperiment04
title = Engineering Experiments
baseValue = 1
scienceCap = 1
dataScale = 1
requireAtmosphere = True
situationMask = 12
biomeMask = 12
RESULTS
{
default = You perform a series of tests on experimental rocket components.
}
}

Edited by Toreador
Link to comment
Share on other sites

Science experiments are larger, heavier, and one-time-use only.

All rockets are a bit more sturdy!

Nooooooo, I like the atmosphere idea better, since they science farm doesn't add a whole lot.

And you can also use on planes, low profile payload, also helps a lot with the science grind for early career.

Link to comment
Share on other sites

Nooooooo, I like the atmosphere idea better, since they science farm doesn't add a whole lot.

And you can also use on planes, low profile payload, also helps a lot with the science grind for early career.

I might accidentally skip this update lol.

Link to comment
Share on other sites

I personally treat these experiment packages as recoverable only, no transmission. But, to each their own. If anyone hates the one-time only use that's easy to patch out with MM by changing the rerunnable property of the experiment module in the part.cfg from false to true

Link to comment
Share on other sites

Hi, just popped in to say I love this mod, it really adds a bit of desperately needed variety to the early game science grind. Haven't tried the new version yet, but I certainly understand the rationale behind the changes, and I mostly treated them as single use anyway.

Link to comment
Share on other sites

Guys good news, I've finished polishing my patches and tweaks, you can now download [thread=120235]in this thread[/thread].

Several patches for SR, for balance and compatibility with both FAR and Realchutes.

@Roverdude

About those balancing, what do you think about them, now I've learned a bit of git and github, should I push them to you?

Link to comment
Share on other sites

  • 3 weeks later...

2 things first off could yo uadd the old style science packages back in? or can I get them somewhere and do it myself? and secondly I cant get these to work. What al I doing wrong?

2 boosters, 1 parachute cone, 1 payload rack with 2 science boxes plus fairing parts.

but I can't launch it. the normal "space bar" to activate engines does not work. so I attach it to a probe core and use the "staging" but then the first booster fires but nothing after this. I do not see anything for Sounding rockets in the "pods" section. what am I doing wrong?

Link to comment
Share on other sites

If you need some inspiration a .625 engine for that liquid fuel booster would be great :)

Also more science instruments (I dont mind if you repack the same ones in more different colours :P)

ps I send you a pm

Link to comment
Share on other sites

Guys good news, I've finished polishing my patches and tweaks, you can now download [thread=120235]in this thread[/thread].

Several patches for SR, for balance and compatibility with both FAR and Realchutes.

@Roverdude

About those balancing, what do you think about them, now I've learned a bit of git and github, should I push them to you?

Sure, happy to take patches and if the FAR/RC ones are MM I can bundle those.

@RoverDude I saw this Skylark science rocket today at the National Space Center in leicester and my first thought was 'oh there's one on RoverDude's sounding rockets' :confused::D

http://i3.photobucket.com/albums/y92/AcidEric/Astrophotography/National%20space%20center/20150522_132901_zpst8ad1tsw.jpg

Very cool!

2 things first off could yo uadd the old style science packages back in? or can I get them somewhere and do it myself? and secondly I cant get these to work. What al I doing wrong?

2 boosters, 1 parachute cone, 1 payload rack with 2 science boxes plus fairing parts.

but I can't launch it. the normal "space bar" to activate engines does not work. so I attach it to a probe core and use the "staging" but then the first booster fires but nothing after this. I do not see anything for Sounding rockets in the "pods" section. what am I doing wrong?

Payload rack as the root part is best, then slap in the probe controller this includes. Rather than add the older inline packages back, a better question is why the radial ones are causing issues? I include these because by having the internals component based, you get to learn fun things about balance, etc. - the idea of the mod being that you get to do lots of rocketry experimentation on the cheap and in the small.

- - - Updated - - -

If you need some inspiration a .625 engine for that liquid fuel booster would be great :)

Also more science instruments (I dont mind if you repack the same ones in more different colours :P)

ps I send you a pm

Never added one in as we already have a 0.625m stock engine :)

Link to comment
Share on other sites

Never added one in as we already have a 0.625m stock engine :)

I understand. but with me redoing the tech tree for myself I seem in need of one ... hmmmmm ... I will try rescaling your smaller engine :P

W

Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...