General Question "e" in numbers ..?

Seahawk72s

New member
Joined
Jun 19, 2010
Messages
21
Reaction score
0
Points
0
I've seen "e" used as part of a variable to defne thrust.

Code:
MAIN_THRUST=44.3e7
RETRO_THRUST=44.3e7

And used to define radius of planets.

How can I find what it means.?
I looked in the Orbiter and Spacecraft pdfs...with no luck

Thanks..
 
It's scientific notation. It's really handy when dealing with big numbers like 10,000,000,000,000,000 standard to 1e16 scientific notation. I use it when cauculating the mass of planets and big orbits.
 
Last edited:
It's scientific notation. It's really handy when dealing with big numbers like 10,000,000,000,000,000 standard to 1e16 scientific notation. I use it when cauculating the mass of planets and big orbits.

thank you both...!
 
I must say I find it confusing and always write the full numbers in the config files or dlls :embarrassed:

But I'm getting more and more familiar with it !
 
yeah just think of it as counting places left or right, as you may already know
 
I must say I find it confusing and always write the full numbers in the config files or dlls

It's really no rocket sience. Regardless of what the number means, you can think of it as how many zeroes a number would have, that's the easiest way to imagine it. so 1e6 is one million, since a million has 6 zeroes (or let's say digits). 1.1e6 would therefore be 1.1 million. 1e9 is one billion. It's sure handier than writing 1,000,000,000 and a lot easier to read, too.
 
Actually, the exponent expression with "E" has a different meaning, but its commonly assumed to be base 10. In the past, "E" meant machine exponent and depended on the implementation of the exponent in floating point numbers. For constants and device independent code, "D" is always base 10, while "B" would be base "2".
 
Back
Top