Exploration by Ian Beardsley
Exploration by Ian Beardsley
Exploration by Ian Beardsley
Exploration
By
Ian Beardsley
Table of Contents
Chapter 1……………….3
Chapter 2……………….6
Chapter 3……………….8
Chapter 4……………….9
Chapter 5……………….10
Chapter 6……………….11
Chapter 7……………….12
Chapter 8……………….13
Chapter 9………………..14
Chapter 10………………15
Afterward………………..16
Climate…………………..20
The Program…………….23
3 of 30
Chapter 1
r=2^n
0=0
1=0
2=10
3=11
4=100
5=101
6=110
7=111
Which is described by
N=2^n
4 of 30
That is,
2=2^1
4=2^2
2=10
4=100
r(n)=K+C2^n
L=M^(3.5)
Chapter 2
Au/Fe=3.5
L=M^(Au/Fe)
using gold wires. Thus, first you will look for life in the
younger inner universe, then to the older inner universe
(less far in and closer to us). Then, to the outer younger
universe (presumably more advanced that we are) and
then to the older outer universe (even more advanced).
Then, to the outer reaches of the Universe, then, report
back to us…
8 of 30
Chapter 3
The ship had 200 cabins, each equipt with two beds and a
kitchenette with a small plastic dining table. The
kicthenette which was a small counter with a cybercooker
embedded in the wall above it. The small plastic dining
table was in the kitchenette. There was a small bathroom
as well. Each cabin had a Kalest gravity to mimic life on
the home planet of its residents.
Chapter 4
Closest Galaxy
Chapter 5
Chapter 6
Dr Helda Heldagaard
12 of 30
Chapter 7
Chapter 8
Chapter 9
Chapter 10
Afterward
Preston Nichols
Pieter Wagener
(r)
R 2GM
ℓ = − m 0(c 2 + v 2)exp ,R = = Sch arschild − ra dius
c2
dψ
= (au 2 + bu + c)−1/2, u = 1/r
du
u = K(1 + εcosk ψ)
∮
pi d qi = ni w, ni = 0,1,2…
Isaac Asimov
18 of 30
Arthur C. Clarke
Paul Levinson
Climate
L 0 = 3.9 × 10 26 J/s
1.5 × 1011m
3.9 × 10 26
S0 = = 1,370wat ts /m eter 2
4π (1.5 × 10 )
11
S0
σ Te 4 = (1 − a)
( 4π r 2 )
π r2
(1 − a)S0
σ Ta 4 = σ Te 4
And we have…
σ Ts 4 = σ Ta 4 + σ Te 4 = 2σ Te 4
1
Ts = 2 4 Te
S0
σ Te 4 = (1 − a)
4
σ = 5.67 × 10−8
S0 = 1,370
a=0.3
1,370
(0.7) = 239.75
4
239.75
Te 4 = = 4.228 × 109
5.67 × 10 −8
Te = 255Kelvin
1
Ts = 2 4 Te = 1.189(255) = 303Kelvin
22 of 30
The Program
Here is my program in C that models the climate of a
planet around any star:
climate.c
#include<stdio.h>
#include<math.h>
int main(void)
{
printf("\n");
printf("\n");
printf("Here we use a single atomospheric
layer with no\n");
printf("convection for the planet to be in
an equilibrium\n");
printf("state. That is to say, the
temperature stays\n");
printf("steady by heat gain and loss with
radiative\n");
printf("heat transfer alone.\n");
printf("The habitable zone is calculated
using the idea\n");
printf("that the earth is in the habitable
zone for a\n");
printf("star like the Sun. That is, if a
star is 100\n");
printf("times brighter than the Sun, then
the habitable\n");
printf("zone for that star is ten times
further from\n");
printf("it than the Earth is from the Sun
because ten\n");
printf("squared is 100\n");
float s, a, l, b, r, AU, N, root, number,
answer, C, F;
24 of 30
N=(1-a)*b/(4*(5.67E-8));
root=sqrt(N);
number=sqrt(root);
answer=1.189*(number);
printf("\n");
printf("\n");
printf("The surface temperature of the
planet is: %f K\n", answer);
C=answer-273;
F=(C*1.8)+32;
printf("That is %f C, or %f F", C, F);
printf("\n");
float joules;
joules=(3.9E26*s);
printf("The luminosity of the star in
joules per second is: %.2fE25\n", joules/
1E25);
float HZ;
HZ=sqrt(joules/3.9E26);
printf("The habitable zone of the star in
AU is: %f\n", HZ);
printf("Flux at planet is %.2f times that
at earth.\n", b/1370);
25 of 30
Hello, World!
Program ended with exit code: 0
27 of 30
stellar.py
bioplanet.java
import comp102x.IO;
/**
* Here we write a program in java that
models the temperature of a planet for a
star
* of given luminosity.
* @author (Ian Beardsley)
* @version (Version 01 March 2016)
*/
public class bioplanet
{
}
}
30 of 30
The Author