-
Posts
1,633 -
Joined
-
Last visited
Content Type
Profiles
Forums
Developer Articles
KSP2 Release Notes
Everything posted by Cheif Operations Director
-
Rosatom rocket engine failure
Cheif Operations Director replied to Nothalogh's topic in Science & Spaceflight
clarification: when I say My point is that isotopes do not instantaneously decay. I doubt RT got that part wrong so in order for background radiation to return to normal shortly after the isotopes would need to decay very quickly. But if they are quickly decaying isotopes it would defeat the point of a nuclear engine since you could only use it for awhile. It may be fission based. -
Rosatom rocket engine failure
Cheif Operations Director replied to Nothalogh's topic in Science & Spaceflight
exactly! -
Rosatom rocket engine failure
Cheif Operations Director replied to Nothalogh's topic in Science & Spaceflight
Never trust the Russian government with nuclear tech. NEVER it always goes boom... This does sound like a nuclear engine. I find this interesting though, why would an isotope based power source suddenly dissipate its energy? Are they trying to use fission or something? I'm not that familiar with nuclear engines. Further more why did they say "background" radiation spike? None of this would relate to backround radiation. This may just be a journalistic mistake but I doubt it. -
Vector Space Systems Micro Satelite Lauches
Cheif Operations Director replied to Basto's topic in Science & Spaceflight
Thanks @tater for the update -
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
Posted for anyone who knows: How do I program a basic servo motor in python. I'm fine with using some variant of python in libraries or importing a module. Just tell me how to do that. -
I mean if you have to pay me $100 dollars for a scientific experiment instead of launching them individually the company could put them all into one capsule then you do not need to do as much THUS driving up sales. If they are comm sats the launch provider could supply materials and an engineer to design said sat. If the materials and enginners labor are worth less than the final product then the business makes more profit
-
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
thanks I assume that you have no experience with Python Robotics? -
I will look at the study but RTLS is already a ridiculous idea. If SpaceX used their brains they would land the rockets in Bermuda (or Cape Verde or Azores) and then do a second launch from the azores onto a droneship. (Im being slightly sarcastic) either way my point is that RTLS is not the only way to recover a rocket. If SpaceX made a large droneship and brought 10 rockets in at a time Sea landings would be more economical.
-
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
Right so from the coding end of things how do I fufill that principle and create a new var on the loop? -
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
I am mentioning the fact that I do not know exactly how long the flight will be. I want the flight to last about 1-2 minutes but if it happens to hit a strong stream of air and gets carried along half way across the ocean I do not want it to stop logging data. My point is that I can only estimate how long the flight will last, it could last many times greater than that estimate hence the voyager analogy. My point was that I want it to stop logging data when I tell it to stop. This could be via code or radio communication etc. This was as long as I have enough storage on the SD card I can get store more stuff, you may say that I should max the storage at the SD max, but if I ever try to transmit the SD card data that would still not be a problem because I could just keep inserting new SD cards to record data. Fundamentally I have no idea how long it will take to come back down and I want as much data as possible. This is what I want to do. When the rocket is on the ground I turn of the data gathering system, if it over the ocean and it hits water after 1 month of going around the world I turn off the system (yes I realize this is preposterous just bear with me) while return_f_data = True #create new vars log_data() -
I think they will cut funding for their space launching systems. They will let them manufacture and launch satellites but that is it. Perhaps ASSIST in Private Astronaut programs as well, there astronaut programs may get cut by 2030 though because the ISS will be gone by then and the private industry will have their own astronaut program. Again this is all dependent on SpaceX or someone else being able to give... NASA Would be turned into an advisory and support administration mainly. One other thing Should have said tremendously bigly, like the world has never seen before. Then you would have the trump aesthetic (No that is not a political statement mods)
-
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
Again though, this is a problem. Take the Voyager craft they still transmit and their life expectancy is over. I need it to run unless I say it should not.Im going to have an if statement so I can turn it off if I need too -
ULA launch and discussion thread
Cheif Operations Director replied to tater's topic in Science & Spaceflight
That was quieter than I expected -
ULA launch and discussion thread
Cheif Operations Director replied to tater's topic in Science & Spaceflight
Live -
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
The limit of the system is the code. when the code stops running it stops logging. that is why it needs to be infinite, it is only supposed to run when the rest of the code runs. Each time the while loop runs it logs data. I have no idea how long the guidance computer will run because it depends on the flight of the rocket. I mean I COULD make it 99999999999999999999 long and make. It theoretically it would run forever but that is annoying for me and the computer. -
Python Questions
Cheif Operations Director replied to Cheif Operations Director's topic in Science & Spaceflight
Im referring to computer parts that are not bristiling with hundreds of communication prongs I was thinking more for an AI System but I suppose you have a point. Hence the SD card correct? What If I want the maximum hold capacity to be infinite? Each X seconds in my code I log data, so if I am at 5 altitude readings in I may be at 1 second. then I can take data from other parts of the rocket and see what was happening at one second. Also (if/when I get to it) I can have the computer review past flight data while in flight to make sure other parts of the rocket are fine on the overall and not second to second level. For example if an array has 1000 items and each value should not be greater than one. If the arrays value is greater than 2 we have a problem. It allows you to examine large amounts of data quickly, that is basically my idea. I could also have a computer read an SD card as another stores the data but that is long term again