Spaces:
Running
Running
File size: 3,086 Bytes
a6c72b9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 |
<html><head><base href="https://websim.ai/c/spacex-mars-rocket-sim" /><title>SpaceX Mars Rocket Engine Simulation</title><style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f0f0f0;
}
h1 {
color: #d63031;
text-align: center;
}
.container {
background-color: white;
border-radius: 10px;
padding: 20px;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.video-container {
position: relative;
width: 100%;
padding-bottom: 56.25%;
margin-bottom: 20px;
}
.video-container iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
}
.info-section {
margin-top: 20px;
}
.info-section h2 {
color: #2d3436;
border-bottom: 2px solid #d63031;
padding-bottom: 5px;
}
.stat {
display: flex;
justify-content: space-between;
margin-bottom: 10px;
}
.stat-label {
font-weight: bold;
}
.cta-button {
display: block;
width: 200px;
margin: 20px auto;
padding: 10px;
background-color: #d63031;
color: white;
text-align: center;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #ff7675;
}
footer {
text-align: center;
margin-top: 20px;
color: #636e72;
font-size: 0.9em;
}
</style></head><body>
<div class="container">
<h1>SpaceX Mars Rocket Engine Simulation</h1>
<div class="video-container">
<iframe width="420" height="315" src="https://www.youtube.com/embed/vYA0f6R5KAI" frameborder="0" allowfullscreen></iframe>
</div>
<div class="info-section">
<h2>Raptor Engine Specifications</h2>
<div class="stat">
<span class="stat-label">Thrust (sea level):</span>
<span>2,200 kN (500,000 lbf)</span>
</div>
<div class="stat">
<span class="stat-label">Thrust (vacuum):</span>
<span>2,600 kN (580,000 lbf)</span>
</div>
<div class="stat">
<span class="stat-label">Specific impulse (sea level):</span>
<span>330 s</span>
</div>
<div class="stat">
<span class="stat-label">Specific impulse (vacuum):</span>
<span>380 s</span>
</div>
<div class="stat">
<span class="stat-label">Chamber pressure:</span>
<span>300 bar (4,350 psi)</span>
</div>
</div>
<div class="info-section">
<h2>Simulation Features</h2>
<ul>
<li>Real-time combustion dynamics</li>
<li>Propellant flow visualization</li>
<li>Thermal analysis of engine components</li>
<li>Nozzle expansion ratio optimization</li>
<li>Turbopump performance metrics</li>
</ul>
</div>
<a href="https://websim.ai/c/spacex-mars-mission" class="cta-button">Explore Full Mars Mission Sim</a>
</div>
<footer>
<p>© 2023 WebSim SpaceX Simulation | <a href="https://websim.ai/c/terms">Terms of Use</a> | <a href="https://websim.ai/c/privacy">Privacy Policy</a></p>
</footer>
</body></html> |