Calculating Weight on Pluto

Pluto Weight Calculator: Know Your Weight on the Dwarf Planet :root { –primary-color: #004a99; –success-color: #28a745; –background-color: #f8f9fa; –text-color: #333; –white: #fff; –border-color: #ddd; –shadow-color: rgba(0, 0, 0, 0.1); } body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: var(–background-color); color: var(–text-color); line-height: 1.6; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: center; } .container { width: 90%; max-width: 960px; margin: 20px auto; background-color: var(–white); padding: 30px; border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); text-align: center; } header { background-color: var(–primary-color); color: var(–white); padding: 20px 0; margin-bottom: 30px; width: 100%; } header h1 { margin: 0; font-size: 2.2em; } main { width: 100%; display: flex; flex-direction: column; align-items: center; } .calculator-section { width: 100%; max-width: 700px; margin-bottom: 40px; padding: 30px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–white); box-shadow: 0 2px 10px var(–shadow-color); } .calculator-section h2 { color: var(–primary-color); margin-top: 0; margin-bottom: 25px; font-size: 1.8em; } .input-group { margin-bottom: 20px; text-align: left; } .input-group label { display: block; font-weight: bold; margin-bottom: 8px; color: var(–primary-color); } .input-group input[type="number"], .input-group select { width: calc(100% – 24px); padding: 12px 10px; border: 1px solid var(–border-color); border-radius: 4px; font-size: 1em; box-sizing: border-box; } .input-group input[type="number"]:focus, .input-group select:focus { outline: none; border-color: var(–primary-color); box-shadow: 0 0 0 3px rgba(0, 74, 153, 0.2); } .input-group small { display: block; margin-top: 8px; font-size: 0.85em; color: #666; } .error-message { color: #dc3545; font-size: 0.85em; margin-top: 5px; display: none; /* Hidden by default */ } .button-group { margin-top: 25px; display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; } button { padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: bold; transition: background-color 0.3s ease, transform 0.2s ease; } button:hover { transform: translateY(-2px); } button.primary { background-color: var(–primary-color); color: var(–white); } button.primary:hover { background-color: #003366; } button.secondary { background-color: #6c757d; color: var(–white); } button.secondary:hover { background-color: #5a6268; } button.success { background-color: var(–success-color); color: var(–white); } button.success:hover { background-color: #218838; } .results-section { width: 100%; max-width: 700px; margin-top: 40px; padding: 30px; border: 1px solid var(–border-color); border-radius: 8px; background-color: var(–white); box-shadow: 0 2px 10px var(–shadow-color); text-align: left; } .results-section h2 { color: var(–primary-color); margin-top: 0; margin-bottom: 25px; font-size: 1.8em; } .main-result { background-color: var(–success-color); color: var(–white); padding: 20px; border-radius: 6px; margin-bottom: 20px; text-align: center; } .main-result .label { font-size: 1.2em; font-weight: bold; display: block; margin-bottom: 10px; } .main-result .value { font-size: 2.5em; font-weight: bold; } .intermediate-results div, .formula-explanation { margin-bottom: 15px; padding: 15px; border-left: 4px solid var(–primary-color); background-color: #e9ecef; border-radius: 4px; } .intermediate-results .label, .formula-explanation .label { font-weight: bold; color: var(–primary-color); margin-bottom: 5px; display: block; } .formula-explanation { background-color: #fff3cd; border-left-color: #ffc107; } table { width: 100%; border-collapse: collapse; margin-top: 20px; margin-bottom: 30px; } th, td { padding: 12px 15px; text-align: left; border: 1px solid var(–border-color); } th { background-color: var(–primary-color); color: var(–white); font-weight: bold; } tr:nth-child(even) { background-color: #f2f2f2; } caption { font-size: 1.1em; font-weight: bold; color: var(–primary-color); margin-bottom: 10px; caption-side: top; text-align: left; } canvas { display: block; margin: 20px auto; max-width: 100%; background-color: var(–white); border-radius: 4px; box-shadow: 0 2px 10px var(–shadow-color); } .article-section { width: 100%; max-width: 960px; margin-top: 50px; padding: 30px; background-color: var(–white); border-radius: 8px; box-shadow: 0 4px 15px var(–shadow-color); text-align: left; } .article-section h2 { color: var(–primary-color); font-size: 2em; margin-bottom: 20px; border-bottom: 2px solid var(–primary-color); padding-bottom: 10px; } .article-section h3 { color: var(–primary-color); font-size: 1.5em; margin-top: 30px; margin-bottom: 15px; } .article-section p { margin-bottom: 15px; } .article-section ul, .article-section ol { margin-left: 20px; margin-bottom: 15px; } .article-section li { margin-bottom: 8px; } .article-section strong { color: var(–primary-color); } a { color: var(–primary-color); text-decoration: none; } a:hover { text-decoration: underline; } .internal-links-section ul { list-style: none; padding: 0; } .internal-links-section li { margin-bottom: 15px; } .internal-links-section a { font-weight: bold; } .internal-links-section span { display: block; font-size: 0.9em; color: #666; margin-top: 4px; } footer { text-align: center; padding: 20px; margin-top: 40px; width: 100%; background-color: var(–primary-color); color: var(–white); font-size: 0.9em; } /* Responsive adjustments */ @media (max-width: 768px) { .container { width: 95%; padding: 20px; } header h1 { font-size: 1.8em; } .calculator-section, .results-section, .article-section { padding: 20px; } .results-section { margin-top: 30px; } .button-group { flex-direction: column; gap: 10px; } button { width: 100%; } .main-result .value { font-size: 2em; } }

Pluto Weight Calculator

Calculate Your Weight on Pluto

Curious to know how heavy you'd feel on the distant dwarf planet Pluto? Use this simple calculator to find out!

Enter your weight in kilograms (kg).
Pluto's gravitational acceleration is approximately 0.62 m/s².
Earth's standard gravitational acceleration is approximately 9.81 m/s².

Your Pluto Weight Results

Your Weight on Pluto — kg
Weight Conversion Factor
Your Mass (Constant) — kg
Force of Gravity on Pluto — N
Formula Used To calculate your weight on Pluto, we first determine your constant mass (mass = weight / Earth's gravity). Then, we multiply your mass by Pluto's gravitational acceleration.

Formula: Weight on Pluto = (Weight on Earth / Earth's Gravity) * Pluto's Gravity
Enter your Earth weight to see your Pluto results.

Weight Comparison Chart

Chart will update based on your input.
Gravity Comparison
Celestial Body Surface Gravity (m/s²) Weight Factor (Pluto vs Earth)
Earth 9.81 1.00
Pluto 0.62 0.62

Understanding Your Weight on Pluto: A Comprehensive Guide

The vastness of space holds many celestial wonders, and among them is Pluto, a dwarf planet that has captivated our imagination. While we might not be planning vacations there anytime soon, it's fascinating to consider how different environments in our solar system would affect us. One of the most intriguing aspects is understanding how much you would weigh on Pluto. This isn't just a fun thought experiment; it helps us appreciate the fundamental concepts of gravity, mass, and weight. Our Pluto Weight Calculator makes this calculation straightforward.

What is Calculating Weight on Pluto?

Calculating your weight on Pluto is the process of determining the force of gravity exerted by Pluto on your body, relative to your weight on Earth. Unlike mass, which is an intrinsic property of an object and remains constant regardless of location, weight is a force that depends on the gravitational pull of the celestial body you are on. Pluto, being much smaller and less massive than Earth, has a significantly weaker gravitational field. Therefore, if you were to stand on Pluto, you would feel much lighter. This calculation is crucial for space enthusiasts, students learning about physics and astronomy, and anyone curious about the universe.

Who should use it?

  • Students learning about gravity and planetary science.
  • Science fiction writers and hobbyists exploring hypothetical scenarios.
  • Anyone with a general curiosity about space and the forces that govern it.
  • Educators looking for engaging ways to teach physics concepts.

Common Misconceptions:

  • Misconception: My mass changes on Pluto. Reality: Mass is the amount of matter in an object and stays the same everywhere. Weight changes.
  • Misconception: Pluto is a planet. Reality: Pluto was reclassified as a dwarf planet in 2006 by the International Astronomical Union.
  • Misconception: The calculator tells you how much you'd "really" weigh. Reality: It's a calculation based on gravitational acceleration; actual experience would involve many other factors like atmospheric pressure and temperature.

Pluto Weight Calculator Formula and Mathematical Explanation

The core of calculating your weight on Pluto lies in understanding the relationship between weight, mass, and gravitational acceleration. The formula we use is derived from Newton's law of universal gravitation, simplified for surface calculations.

First, we need to find your mass. Mass (m) is defined as your weight (W) divided by the gravitational acceleration (g) of the location where that weight was measured. We typically use Earth's gravity for this initial step because most people know their weight on Earth.

Equation 1: Mass Calculation

m = WEarth / gEarth

Where:

  • m = Mass of the object (your body)
  • WEarth = Your weight measured on Earth
  • gEarth = Gravitational acceleration on Earth's surface

Once we have your constant mass, we can calculate your weight on Pluto (WPluto) by multiplying your mass by Pluto's gravitational acceleration (gPluto).

Equation 2: Weight on Pluto Calculation

WPluto = m * gPluto

Substituting Equation 1 into Equation 2 gives us the combined formula:

Combined Formula: WPluto = (WEarth / gEarth) * gPluto

This is precisely what our Pluto Weight Calculator implements. It calculates your mass and then applies Pluto's gravity.

Variable Explanations

Let's break down the variables used in the calculation:

Variables in Pluto Weight Calculation
Variable Meaning Unit Typical Range / Value
WEarth Your weight as measured on Earth's surface. Kilograms (kg) or Newtons (N)* User Input (e.g., 50-150 kg)
gEarth Standard gravitational acceleration on Earth's surface. Meters per second squared (m/s²) Approximately 9.81 m/s²
m Your mass, which is constant regardless of location. Kilograms (kg) Calculated (WEarth / gEarth)
gPluto Gravitational acceleration on Pluto's surface. Meters per second squared (m/s²) Approximately 0.62 m/s²
WPluto Your calculated weight on Pluto's surface. Kilograms (kg) or Newtons (N)* Calculated (m * gPluto)

*Note: While weight is technically a force measured in Newtons (N), it's common in everyday language and many calculators to express weight in kilograms (kg) by implicitly assuming Earth's gravity. Our calculator outputs in kg for ease of understanding, based on the input being in kg.

Practical Examples

Let's illustrate how the Pluto Weight Calculator works with realistic examples:

Example 1: An Average Adult

Consider Sarah, who weighs 65 kg on Earth.

  • Input: Earth Weight = 65 kg
  • Calculation:
    • Mass = 65 kg / 9.81 m/s² ≈ 6.626 kg
    • Weight on Pluto = 6.626 kg * 0.62 m/s² ≈ 4.108 kg
  • Output: Sarah would weigh approximately 4.11 kg on Pluto.
  • Interpretation: Sarah would feel significantly lighter, experiencing only about 6.2% of her Earth weight due to Pluto's weaker gravity.

Example 2: A Lighter Individual

Now, let's look at Tom, who weighs 50 kg on Earth.

  • Input: Earth Weight = 50 kg
  • Calculation:
    • Mass = 50 kg / 9.81 m/s² ≈ 5.097 kg
    • Weight on Pluto = 5.097 kg * 0.62 m/s² ≈ 3.160 kg
  • Output: Tom would weigh approximately 3.16 kg on Pluto.
  • Interpretation: Tom would also feel much lighter, experiencing a similar fraction of his Earth weight as Sarah, demonstrating the consistent effect of Pluto's gravity across different masses.

These examples highlight how the Pluto Weight Calculator provides a clear understanding of how gravity affects perceived weight, a fundamental concept in physics.

How to Use This Pluto Weight Calculator

Using our calculator is designed to be simple and intuitive. Follow these steps to quickly find out your weight on Pluto:

  1. Enter Your Earth Weight: Locate the input field labeled "Your Weight on Earth". Type in your current weight in kilograms (kg). Ensure you enter a positive numerical value.
  2. Review Gravity Values: The calculator automatically populates Earth's and Pluto's surface gravity values (9.81 m/s² and 0.62 m/s² respectively). These are standard approximations and are set as read-only.
  3. Click Calculate: Once you've entered your weight, click the "Calculate" button.
  4. View Your Results: The calculator will instantly display:
    • Your Weight on Pluto: This is the primary highlighted result, showing your estimated weight in kilograms on Pluto.
    • Weight Conversion Factor: This indicates how Pluto's gravity compares to Earth's (e.g., 0.62 means Pluto's gravity is 62% of Earth's).
    • Your Mass (Constant): This shows your actual mass in kilograms, which remains unchanged from your Earth mass.
    • Force of Gravity on Pluto: This displays the calculated force in Newtons acting on you on Pluto.
  5. Understand the Formula: Below the results, you'll find a clear explanation of the formula used, making the calculation transparent.
  6. Use the Chart and Table: Examine the Weight Comparison Chart and Gravity Comparison Table to visually understand how your weight on Pluto relates to your Earth weight and the gravitational forces involved.
  7. Reset or Copy: Use the "Reset" button to clear the fields and start over. Use the "Copy Results" button to easily share your findings.

Decision-Making Guidance: While this calculator is for entertainment and education, understanding gravitational differences is key in physics. It helps comprehend concepts related to orbital mechanics and the physical conditions on different celestial bodies.

Key Factors Affecting Pluto Weight Calculations

While the calculation itself is straightforward, several factors influence the precise values and our understanding of weight on celestial bodies like Pluto:

  1. Gravitational Acceleration Accuracy: The values for gEarth (9.81 m/s²) and gPluto (0.62 m/s²) are approximations. Actual gravitational force can vary slightly across a planet's surface due to factors like density variations, elevation, and the planet's rotation. For Pluto, which is not perfectly spherical and has a complex internal structure, these are average surface values.
  2. Mass vs. Weight Distinction: The most crucial factor is understanding that mass is constant, while weight is variable. Many people confuse the two, thinking their "weight" is their mass. Our calculator emphasizes this distinction. This is fundamental in physics and essential for any space exploration calculations.
  3. Earth's Rotation and Shape: Earth isn't a perfect sphere, and its rotation causes slight variations in gravitational pull at different latitudes. Standard gravity (9.80665 m/s²) is an average.
  4. Pluto's Mass Distribution: Pluto's gravity is influenced by its mass and radius. Variations in density within Pluto could lead to subtle differences in surface gravity. Its orbit also causes slight variations in its shape.
  5. Atmospheric Pressure: While not directly part of the weight calculation, atmospheric pressure can affect how objects are perceived and interact with their environment. Pluto has a thin, tenuous atmosphere that can change density with its orbital position.
  6. Distance from Center: Gravity decreases with the square of the distance from the center of a celestial body. Therefore, being at a higher altitude on Pluto would result in slightly less weight than on its surface. Our calculator assumes surface level.
  7. Relative Density of Pluto: Pluto's lower density compared to Earth means that for the same volume, it contains less mass. This directly translates to weaker gravitational pull.
  8. Tidal Forces: While negligible for a personal weight calculation on Pluto itself, tidal forces from other celestial bodies can influence gravitational measurements in more complex astronomical scenarios.

Frequently Asked Questions (FAQ)

Q1: Why is my weight different on Pluto?
Your weight is different because Pluto has much less mass than Earth, resulting in a weaker gravitational pull. Your mass (the amount of matter in you) remains the same, but the force exerted by gravity on that mass changes.
Q2: Does Pluto have gravity?
Yes, Pluto has gravity, but it is significantly weaker than Earth's gravity. Its surface gravity is estimated to be about 6.2% of Earth's gravity.
Q3: Can I jump higher on Pluto?
Yes, you would be able to jump much higher on Pluto. With lower gravity pulling you down, you could achieve greater heights with the same amount of effort.
Q4: Is Pluto a planet?
No, Pluto was reclassified as a dwarf planet in 2006 by the International Astronomical Union (IAU). It meets some criteria for being a planet but not all.
Q5: What is the surface gravity of Pluto in m/s²?
The approximate surface gravity of Pluto is 0.62 m/s², compared to Earth's 9.81 m/s².
Q6: What if I entered my weight in pounds (lbs)?
Our calculator is designed for kilograms (kg). If you entered pounds, the result would be incorrect. You would need to convert your weight from pounds to kilograms first (1 lb ≈ 0.453592 kg) before using the calculator.
Q7: Does Pluto have an atmosphere?
Yes, Pluto has a very thin and tenuous atmosphere primarily composed of nitrogen, methane, and carbon monoxide. This atmosphere can expand and contract depending on Pluto's distance from the Sun.
Q8: How does this calculation differ from calculating weight on other planets?
The principle is the same: divide your Earth weight by Earth's gravity to get your mass, then multiply by the target celestial body's gravity. The specific result varies greatly because each planet and moon has a unique mass and size, leading to different gravitational accelerations. For example, you'd weigh more on Jupiter than on Earth, but less on Mars than on Earth.

© 2023 Pluto Weight Calculator. All rights reserved.

var chartInstance = null; function initializeChart(plutoWeightKg) { var ctx = document.getElementById("weightComparisonChart").getContext("2d"); var earthWeightKg = parseFloat(document.getElementById("earthWeight").value); if (isNaN(earthWeightKg) || earthWeightKg <= 0) { earthWeightKg = 70; // Default if input is invalid } var plutoGravityFactor = 0.62; // Pluto's gravity relative to Earth var data = { labels: ["Earth", "Pluto"], datasets: [{ label: 'Weight (kg)', data: [earthWeightKg, plutoWeightKg], backgroundColor: [ 'rgba(54, 162, 235, 0.6)', // Earth Blue 'rgba(255, 99, 132, 0.6)' // Pluto Red ], borderColor: [ 'rgba(54, 162, 235, 1)', 'rgba(255, 99, 132, 1)' ], borderWidth: 1 }] }; var options = { responsive: true, maintainAspectRatio: true, scales: { y: { beginAtZero: true, title: { display: true, text: 'Weight (kg)' } } }, plugins: { legend: { position: 'top', }, title: { display: true, text: 'Weight Comparison: Earth vs. Pluto' } } }; // Destroy previous chart instance if it exists if (chartInstance) { chartInstance.destroy(); } chartInstance = new Chart(ctx, { type: 'bar', data: data, options: options }); } function validateInput(inputId, errorId, min, max) { var input = document.getElementById(inputId); var errorElement = document.getElementById(errorId); var value = parseFloat(input.value); var isValid = true; errorElement.style.display = 'none'; input.style.borderColor = '#ddd'; if (input.value === "") { errorElement.textContent = "This field cannot be empty."; errorElement.style.display = 'block'; input.style.borderColor = '#dc3545'; isValid = false; } else if (isNaN(value)) { errorElement.textContent = "Please enter a valid number."; errorElement.style.display = 'block'; input.style.borderColor = '#dc3545'; isValid = false; } else if (value <= 0) { errorElement.textContent = "Value must be positive."; errorElement.style.display = 'block'; input.style.borderColor = '#dc3545'; isValid = false; } else if (min !== null && value max) { errorElement.textContent = "Value cannot be greater than " + max + "."; errorElement.style.display = 'block'; input.style.borderColor = '#dc3545'; isValid = false; } return isValid; } function calculateWeightOnPluto() { var earthWeightInput = document.getElementById("earthWeight"); var earthWeightError = document.getElementById("earthWeightError"); var plutoWeightResult = document.getElementById("plutoWeightResult"); var conversionFactorResult = document.getElementById("conversionFactorResult"); var massResult = document.getElementById("massResult"); var plutoGravityForceResult = document.getElementById("plutoGravityForceResult"); var resultsContainer = document.getElementById("resultsContainer"); var noResultsMessage = document.getElementById("noResultsMessage"); var chartMessage = document.getElementById("chartMessage"); // Clear previous errors and styles earthWeightError.style.display = 'none'; earthWeightInput.style.borderColor = '#ddd'; var earthWeight = parseFloat(earthWeightInput.value); var earthGravity = parseFloat(document.getElementById("earthGravity").value); var plutoGravity = parseFloat(document.getElementById("gravityPluto").value); var isValid = true; if (isNaN(earthWeight) || earthWeight <= 0) { earthWeightError.textContent = "Please enter a valid positive weight in kg."; earthWeightError.style.display = 'block'; earthWeightInput.style.borderColor = '#dc3545'; isValid = false; } if (isNaN(earthGravity) || earthGravity <= 0) { isValid = false; // Should not happen with readonly input, but good practice } if (isNaN(plutoGravity) || plutoGravity < 0) { // Pluto gravity can be 0 but not negative isValid = false; // Should not happen with readonly input } if (isValid) { var mass = earthWeight / earthGravity; var plutoWeight = mass * plutoGravity; var conversionFactor = plutoWeight / earthWeight; plutoWeightResult.textContent = plutoWeight.toFixed(2) + " kg"; massResult.textContent = mass.toFixed(2) + " kg"; conversionFactorResult.textContent = conversionFactor.toFixed(2) + " (Pluto's gravity / Earth's gravity)"; plutoGravityForceResult.textContent = (plutoWeight).toFixed(2) + " N"; // Assuming input was kg, result is kg force equivalent, convert to N if mass was calculated properly. resultsContainer.style.display = 'block'; noResultsMessage.style.display = 'none'; chartMessage.textContent = "Weight comparison chart updated."; // Update table values document.getElementById("plutoGravityValue").textContent = plutoGravity.toFixed(2); document.getElementById("plutoWeightFactorValue").textContent = conversionFactor.toFixed(2); // Initialize or update chart initializeChart(plutoWeight); } else { plutoWeightResult.textContent = "– kg"; massResult.textContent = "– kg"; conversionFactorResult.textContent = "–"; plutoGravityForceResult.textContent = "– N"; resultsContainer.style.display = 'none'; noResultsMessage.style.display = 'block'; chartMessage.textContent = "Enter your Earth weight to see chart data."; // Clear chart if input is invalid if (chartInstance) { chartInstance.destroy(); chartInstance = null; } } } function resetCalculator() { document.getElementById("earthWeight").value = "70"; // Sensible default document.getElementById("earthWeightError").style.display = 'none'; document.getElementById("earthWeight").style.borderColor = '#ddd'; calculateWeightOnPluto(); // Recalculate with default value } function copyResults() { var plutoWeight = document.getElementById("plutoWeightResult").textContent; var conversionFactor = document.getElementById("conversionFactorResult").textContent; var mass = document.getElementById("massResult").textContent; var plutoGravityForce = document.getElementById("plutoGravityForceResult").textContent; var earthWeight = document.getElementById("earthWeight").value; if (plutoWeight === "– kg") { alert("No results to copy yet. Please calculate first."); return; } var assumptionEarthGravity = document.getElementById("earthGravity").value; var assumptionPlutoGravity = document.getElementById("gravityPluto").value; var textToCopy = "— Pluto Weight Calculation Results —\n\n"; textToCopy += "Your Weight on Earth: " + earthWeight + " kg\n"; textToCopy += "Your Weight on Pluto: " + plutoWeight + "\n"; textToCopy += "Your Constant Mass: " + mass + "\n"; textToCopy += "Weight Conversion Factor: " + conversionFactor + "\n"; textToCopy += "Force of Gravity on Pluto: " + plutoGravityForce + "\n\n"; textToCopy += "— Key Assumptions —\n"; textToCopy += "Earth Surface Gravity: " + assumptionEarthGravity + " m/s²\n"; textToCopy += "Pluto Surface Gravity: " + assumptionPlutoGravity + " m/s²\n"; textToCopy += "Formula Used: Weight on Pluto = (Weight on Earth / Earth's Gravity) * Pluto's Gravity\n"; // Use a temporary textarea to copy text to clipboard var tempTextArea = document.createElement("textarea"); tempTextArea.value = textToCopy; tempTextArea.style.position = "absolute"; tempTextArea.style.left = "-9999px"; // Move outside the screen document.body.appendChild(tempTextArea); tempTextArea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied to clipboard!' : 'Failed to copy results.'; // Simple visual feedback var copyButton = event.target; copyButton.textContent = msg; setTimeout(function() { copyButton.textContent = 'Copy Results'; }, 2000); } catch (err) { console.error('Unable to copy', err); alert('Failed to copy results. Please copy manually.'); } document.body.removeChild(tempTextArea); } // Initialize chart on page load with default/placeholder values document.addEventListener('DOMContentLoaded', function() { // Set initial table values document.getElementById("plutoGravityValue").textContent = "0.62"; document.getElementById("plutoWeightFactorValue").textContent = "0.62"; resetCalculator(); // Sets default earthWeight and calculates // calculateWeightOnPluto(); // This will be called by resetCalculator });

Leave a Comment