Calculate Torque Needed to Lift a Weight

Calculate Torque Needed to Lift a Weight – Torque Calculator body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background-color: #f8f9fa; color: #333; line-height: 1.6; margin: 0; padding: 0; } .container { max-width: 960px; margin: 20px auto; padding: 20px; background-color: #fff; border-radius: 8px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; align-items: center; } header { width: 100%; background-color: #004a99; color: #fff; padding: 20px 0; text-align: center; border-radius: 8px 8px 0 0; margin-bottom: 20px; } header h1 { margin: 0; font-size: 2.2em; letter-spacing: -0.5px; } .calculator-section { width: 100%; background-color: #ffffff; padding: 30px; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); margin-bottom: 30px; } .calculator-section h2 { color: #004a99; margin-top: 0; text-align: center; margin-bottom: 25px; font-size: 1.8em; } .loan-calc-container { width: 100%; display: flex; flex-direction: column; gap: 20px; } .input-group { display: flex; flex-direction: column; align-items: flex-start; width: 100%; } .input-group label { font-weight: 600; margin-bottom: 8px; color: #004a99; display: block; } .input-group input[type="number"], .input-group select { width: 100%; padding: 12px 15px; border: 1px solid #ccc; border-radius: 5px; font-size: 1em; box-sizing: border-box; transition: border-color 0.3s ease; } .input-group input[type="number"]:focus, .input-group select:focus { border-color: #004a99; outline: none; } .input-group .helper-text { font-size: 0.85em; color: #666; margin-top: 5px; } .error-message { color: #dc3545; font-size: 0.85em; margin-top: 5px; min-height: 1.2em; /* Reserve space for error message */ } .button-group { display: flex; justify-content: space-between; margin-top: 25px; gap: 15px; width: 100%; } button { padding: 12px 25px; border: none; border-radius: 5px; cursor: pointer; font-size: 1em; font-weight: 600; transition: background-color 0.3s ease, transform 0.2s ease; } .btn-primary { background-color: #004a99; color: white; } .btn-primary:hover { background-color: #003366; transform: translateY(-1px); } .btn-secondary { background-color: #6c757d; color: white; } .btn-secondary:hover { background-color: #5a6268; transform: translateY(-1px); } .btn-reset { background-color: #ffc107; color: #212529; } .btn-reset:hover { background-color: #e0a800; transform: translateY(-1px); } .results-display { margin-top: 30px; padding: 25px; background-color: #e7f3ff; border-radius: 8px; border: 1px solid #cce5ff; width: 100%; box-sizing: border-box; display: flex; flex-direction: column; align-items: center; } .results-display h3 { color: #004a99; margin-top: 0; margin-bottom: 20px; text-align: center; } .primary-result { font-size: 2.2em; font-weight: bold; color: #28a745; background-color: #ffffff; padding: 15px 30px; border-radius: 6px; margin-bottom: 20px; border: 2px solid #28a745; display: inline-block; } .intermediate-results, .formula-explanation { margin-top: 15px; width: 100%; text-align: left; } .intermediate-results p, .formula-explanation p { margin-bottom: 10px; font-size: 1.1em; } .intermediate-results span, .formula-explanation span { font-weight: bold; color: #004a99; } .formula-explanation { margin-top: 25px; padding-top: 15px; border-top: 1px dashed #ccc; } table { width: 100%; border-collapse: collapse; margin-top: 25px; font-size: 0.95em; } th, td { padding: 12px 15px; text-align: left; border-bottom: 1px solid #ddd; } th { background-color: #004a99; color: white; font-weight: bold; } tr:nth-child(even) { background-color: #f2f2f2; } caption { font-size: 1.1em; margin-bottom: 10px; font-weight: bold; color: #004a99; caption-side: top; text-align: left; } .chart-container { width: 100%; margin-top: 30px; padding: 20px; background-color: #e7f3ff; border-radius: 8px; border: 1px solid #cce5ff; box-sizing: border-box; } .chart-container h3 { text-align: center; margin-top: 0; margin-bottom: 15px; color: #004a99; } canvas { display: block; /* Remove extra space below canvas */ margin: 0 auto; max-width: 100%; height: auto !important; /* Ensure it scales */ } .article-section { width: 100%; margin-top: 30px; padding: 30px; background-color: #ffffff; border-radius: 10px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); } .article-section h2 { color: #004a99; margin-bottom: 20px; font-size: 1.8em; text-align: left; } .article-section h3 { color: #0056b3; margin-top: 25px; margin-bottom: 15px; font-size: 1.4em; } .article-section p { margin-bottom: 15px; } .article-section ul { margin-left: 25px; margin-bottom: 15px; } .article-section li { margin-bottom: 8px; } .article-section table { margin-top: 15px; } .article-section table th, .article-section table td { border: 1px solid #ddd; } .article-section .highlight { font-weight: bold; color: #004a99; } .article-section .faq-question { font-weight: bold; color: #004a99; margin-top: 15px; display: block; } .related-links { margin-top: 30px; padding: 25px; background-color: #e7f3ff; border-radius: 8px; border: 1px solid #cce5ff; width: 100%; box-sizing: border-box; } .related-links h3 { color: #004a99; margin-top: 0; margin-bottom: 15px; text-align: center; } .related-links ul { list-style: none; padding: 0; margin: 0; } .related-links li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px dashed #ccc; } .related-links li:last-child { border-bottom: none; padding-bottom: 0; } .related-links a { color: #004a99; text-decoration: none; font-weight: 500; } .related-links a:hover { text-decoration: underline; } .related-links p { font-size: 0.9em; color: #666; margin-top: 5px; } footer { text-align: center; margin-top: 40px; padding: 20px; font-size: 0.9em; color: #666; width: 100%; }

Torque Calculator: Determine Lifting Torque Requirements

Calculate Torque Needed to Lift a Weight

Enter the total mass of the object to be lifted in kilograms.
Enter the horizontal distance from the pivot point (fulcrum) to the center of mass of the weight.
Enter the angle between the lever arm and the applied force (0-180 degrees). 90 degrees is perpendicular.

Results

Applied Force: N

Lever Arm Length: m

Force Component Perpendicular to Lever Arm: N

Formula Used: Torque (τ) = Force (F) × Distance (r) × sin(θ)

Where: τ is torque, F is the applied force, r is the lever arm distance, and θ is the angle between the force vector and the lever arm.

Torque vs. Angle of Force

Torque Calculation Variables
Variable Meaning Unit Typical Range
Weight (Mass) The mass of the object to be lifted. kg 1 to 100,000+
Distance (Lever Arm) The distance from the pivot to the point where force is applied or where the weight's center of mass is. m 0.01 to 100+
Angle of Force The angle between the lever arm and the direction of the applied force. Degrees 0 to 180
Torque (τ) The rotational force required to lift the weight. Nm Calculated
Applied Force (F) The force exerted by gravity on the weight (Mass × acceleration due to gravity). N Calculated

What is Torque Needed to Lift a Weight?

Understanding the torque needed to lift a weight is fundamental in mechanical engineering, physics, and any application involving rotational motion or lifting heavy objects with mechanical advantage. Torque, often described as a 'twisting force', is what causes an object to rotate around an axis or pivot point. When lifting a weight, torque is generated by applying a force at a distance from the pivot. The greater the weight, the farther it is from the pivot, or the less effectively the force is applied (i.e., not perpendicular), the more torque is required.

Who Should Use This Calculator:

  • Mechanical engineers designing lifting equipment (cranes, hoists, jacks).
  • Students and educators studying physics and engineering principles.
  • DIY enthusiasts building or modifying machinery that involves lifting or rotating heavy loads.
  • Anyone needing to calculate the rotational force required for a specific mechanical task.

Common Misconceptions:

  • Torque is the same as force: While related, torque is a rotational force, measured in Newton-meters (Nm) or foot-pounds (lb-ft), whereas linear force is measured in Newtons (N) or pounds (lbs).
  • Force is always perpendicular: The formula for torque accounts for the angle of the applied force. Maximum torque is achieved when the force is perpendicular to the lever arm (90 degrees).
  • Distance doesn't matter: The distance from the pivot (lever arm) significantly impacts the required torque. A longer lever arm can generate more torque with less force, or require less torque to move the same weight.

Torque Needed to Lift a Weight Formula and Mathematical Explanation

The calculation of the torque needed to lift a weight is based on fundamental physics principles. The primary formula used is:

τ = r × F × sin(θ)

Let's break down this formula and its components:

Variable Explanations:

  • τ (Torque): This is the rotational force we are calculating. It represents the turning effect produced by a force applied at a distance from an axis of rotation. The standard SI unit for torque is the Newton-meter (Nm).
  • r (Lever Arm Length): This is the perpendicular distance from the pivot point (axis of rotation) to the point where the force is applied, or to the center of mass of the object being acted upon by gravity. It is measured in meters (m).
  • F (Applied Force): This is the magnitude of the force being applied. In the context of lifting a weight, the primary force acting downwards due to gravity is F = m × g, where 'm' is the mass of the object and 'g' is the acceleration due to gravity (approximately 9.81 m/s² on Earth).
  • θ (Angle of Force): This is the angle between the lever arm vector (pointing from the pivot to the point of force application) and the force vector. The sine of this angle (sin(θ)) determines how much of the applied force contributes to the rotation.

Mathematical Derivation and Steps:

  1. Determine the Force of Gravity: First, calculate the force exerted by the weight due to gravity. This is done using Newton's second law: F_gravity = mass × g. On Earth, g ≈ 9.81 m/s².
  2. Identify the Lever Arm: Measure or determine the distance 'r' from the pivot point to the center of mass of the weight being lifted. This is the lever arm length.
  3. Determine the Angle: Measure or determine the angle 'θ' between the lever arm and the direction of the force you are applying to lift the weight. Often, the lifting force is applied upwards, opposing gravity, at an angle.
  4. Calculate the Perpendicular Force Component: The torque generated depends only on the component of the force that is perpendicular to the lever arm. This component is calculated as F_perpendicular = F × sin(θ). If the force is applied perfectly perpendicular (θ = 90°), then sin(90°) = 1, and the full force is used. If the force is applied at an angle, only a fraction contributes to torque.
  5. Calculate Torque: Finally, multiply the perpendicular force component by the lever arm length: τ = r × F_perpendicular, which simplifies to the main formula τ = r × F × sin(θ).

Variables Table:

Variable Meaning Unit Typical Range (for lifting)
Weight (Mass) The mass of the object being lifted. kg 1 kg to 100,000+ kg
Distance (Lever Arm) Horizontal distance from pivot to center of mass. m 0.01 m to 100+ m
Angle of Force Angle between lever arm and applied force vector. Degrees (0-180) 0° to 180°
Torque (τ) Rotational force required. Nm (Newton-meters) 0 Nm to highly variable
Applied Force (F) Force exerted by gravity on the object. N (Newtons) m × 9.81 N
sin(θ) Sine of the angle of force. Unitless 0 to 1

Practical Examples (Real-World Use Cases)

Let's explore how the torque calculation applies in practical scenarios for lifting weights.

Example 1: Lifting a Heavy Crate with a Lever

Imagine a warehouse worker needs to lift a heavy crate using a simple lever. The crate weighs 500 kg and its center of mass is 0.4 meters from the pivot point of the lever. The worker applies force perpendicular to the lever arm (90 degrees).

  • Weight (Mass), m = 500 kg
  • Distance (Lever Arm), r = 0.4 m
  • Angle of Force, θ = 90°
  • Acceleration due to gravity, g = 9.81 m/s²

Calculation:

  1. Applied Force, F = m × g = 500 kg × 9.81 m/s² = 4905 N
  2. sin(θ) = sin(90°) = 1
  3. Torque, τ = r × F × sin(θ) = 0.4 m × 4905 N × 1 = 1962 Nm

Result Interpretation: A torque of 1962 Nm is required at the pivot point to begin lifting the 500 kg crate. This torque needs to be provided by the worker's effort, a jack, or another mechanical system.

Example 2: Operating a Crane Boom

Consider a small construction crane with a load of 2000 kg at the end of its boom. The boom extends 15 meters from the crane's pivot point. To lift the load, the crane's hydraulic system applies force at an angle of 60 degrees relative to the horizontal boom.

  • Weight (Mass), m = 2000 kg
  • Distance (Lever Arm), r = 15 m
  • Angle of Force, θ = 60°
  • Acceleration due to gravity, g = 9.81 m/s²

Calculation:

  1. Applied Force, F = m × g = 2000 kg × 9.81 m/s² = 19620 N
  2. sin(θ) = sin(60°) ≈ 0.866
  3. Torque, τ = r × F × sin(θ) = 15 m × 19620 N × 0.866 ≈ 254871 Nm

Result Interpretation: The crane's mechanism must generate approximately 254,871 Newton-meters of torque to lift this specific load under these conditions. This highlights how significant torque requirements can be for heavy industrial machinery.

How to Use This Torque Calculator

Our online torque calculator is designed for ease of use. Follow these simple steps to determine the torque needed to lift a weight accurately:

  1. Input Weight: Enter the mass of the object you intend to lift in kilograms (kg) into the "Weight to Lift" field. Ensure this is the total mass, including any containers or attachments.
  2. Input Distance: Provide the horizontal distance from the pivot point (the point around which rotation occurs) to the center of mass of the weight. This is often referred to as the lever arm length and should be entered in meters (m).
  3. Input Angle: Specify the angle (in degrees) between the lever arm and the direction of the applied force. A 90-degree angle means the force is perfectly perpendicular, maximizing torque. If your force is applied at an angle, enter that value (between 0 and 180 degrees).
  4. Click 'Calculate Torque': Once all inputs are entered, click the "Calculate Torque" button.

How to Read Results:

  • Primary Highlighted Result (Torque): This is the main output, showing the total torque (in Newton-meters, Nm) required to initiate the lift under the specified conditions. This value tells you the rotational force your mechanism needs to overcome.
  • Intermediate Values:
    • Applied Force: Shows the gravitational force (in Newtons, N) acting on the weight.
    • Lever Arm Length: Confirms the distance you entered.
    • Force Component Perpendicular to Lever Arm: Displays the portion of the applied force that effectively contributes to the torque.
  • Formula Explanation: A reminder of the physics behind the calculation.
  • Chart: Visualizes how torque changes with the angle of applied force, assuming other parameters remain constant.
  • Table: Details each variable used in the calculation, its meaning, unit, and typical range.

Decision-Making Guidance:

The calculated torque is a critical factor in selecting or designing appropriate lifting mechanisms. If the required torque exceeds the capacity of your motor, actuator, or manual effort, you will not be able to lift the weight. You might need to:

  • Increase the lever arm length (if possible).
  • Apply force more perpendicularly to the lever arm.
  • Use a more powerful mechanism capable of generating higher torque.
  • Reduce the weight being lifted.

Use the "Copy Results" button to easily share or document your findings.

Key Factors That Affect Torque Needed to Lift a Weight

Several factors influence the amount of torque required to lift a weight. Understanding these can help optimize mechanical designs and operational strategies.

  1. Mass of the Object: Directly proportional to the force of gravity. A heavier object requires more force, and consequently, more torque to lift. This is the most significant factor.
  2. Distance from Pivot (Lever Arm): Torque is also directly proportional to the lever arm length. A longer lever arm allows you to generate the same amount of torque with less force, or generate more torque with the same force.
  3. Angle of Applied Force: The torque is dependent on the sine of the angle between the lever arm and the force. Maximum torque is achieved at 90 degrees. Forces applied at shallow angles (close to 0 or 180 degrees) contribute very little to torque, making lifting inefficient or impossible.
  4. Acceleration Due to Gravity (g): While generally constant on Earth (approx. 9.81 m/s²), the actual 'g' can vary slightly with altitude and location. For applications in different gravitational fields (like on the Moon or Mars), this value must be adjusted, significantly altering the required torque.
  5. Friction: In real-world systems, friction in bearings, joints, or sliding surfaces resists motion. This additional resistance adds to the required torque, meaning the calculated torque is a theoretical minimum; actual operational torque will be higher.
  6. Inertia and Acceleration: The calculation typically determines the torque needed to hold or lift the weight statically. To *accelerate* the weight upwards (i.e., to start it moving), additional torque is required to overcome its inertia. The faster you need to accelerate, the more torque is needed.
  7. Efficiency of the Mechanism: Gears, pulleys, and other components in a lifting system have their own inefficiencies. Energy is lost to friction and other factors, meaning the input torque required might be higher than the output torque needed to lift the load itself.

Frequently Asked Questions (FAQ)

Q1: What is the difference between torque and force?

A1: Force is a push or pull on an object. Torque is a rotational or twisting force that causes an object to rotate around an axis. Think of pushing a door open (force) versus turning a doorknob (torque).

Q2: What unit is torque measured in?

A2: The standard SI unit for torque is the Newton-meter (Nm). In some regions, foot-pounds (lb-ft) is also used.

Q3: Why does the angle of the force matter so much?

A3: Torque calculation involves the sine of the angle between the lever arm and the force. The sine function means that only the component of the force perpendicular to the lever arm contributes to torque. Maximum torque occurs at 90 degrees.

Q4: Do I need to account for the weight of the lifting arm itself?

A4: Yes, if the lifting arm has significant weight and its center of mass is not at the pivot, its weight will also generate torque. This torque must be overcome in addition to the load's torque. Our calculator assumes the 'weight to lift' is the primary load and its center of mass is at the specified distance 'r'.

Q5: Can this calculator be used for lowering a weight?

A5: This calculator determines the torque required to lift. Lowering a weight requires controlling the descent, which often involves braking or controlled release mechanisms. The torque might be similar in magnitude but applied in the opposite direction or managed differently.

Q6: What if the weight is not uniform?

A6: The 'distance from pivot' should be the distance to the object's *center of mass*. For non-uniform objects, finding the precise center of mass can be complex and may require engineering analysis.

Q7: How does friction affect the torque calculation?

A7: Friction in any moving parts (like pivot points or gears) resists rotation. This means the actual torque needed to operate the system will be higher than the theoretical torque calculated here. You'd add a factor for friction losses.

Q8: What is a typical safe torque margin?

A8: It's good practice to design systems with a safety margin. A common safety factor for torque might be 1.5 to 2 times the calculated maximum required torque, accounting for unexpected loads, wear, and ensuring reliability.

© 2023 Your Company Name. All rights reserved.

// Global variable for chart instance var myChart = null; var chartCanvas = document.getElementById('torqueChart'); function updateChart() { var weight = parseFloat(document.getElementById('weight').value); var distance = parseFloat(document.getElementById('distance').value); var g = 9.81; // Acceleration due to gravity in m/s^2 if (isNaN(weight) || isNaN(distance)) { return; // Do not update chart if inputs are invalid } var angles = []; var torques = []; var forces = []; var perpendicularForces = []; for (var angleDeg = 0; angleDeg <= 180; angleDeg += 5) { angles.push(angleDeg); var angleRad = angleDeg * Math.PI / 180; var currentForce = weight * g; var currentPerpForce = currentForce * Math.sin(angleRad); var currentTorque = distance * currentForce * Math.sin(angleRad); torques.push(currentTorque); forces.push(currentForce); // Constant force for a given weight perpendicularForces.push(currentPerpForce); } var ctx = chartCanvas.getContext('2d'); // Destroy previous chart instance if it exists if (myChart) { myChart.destroy(); } // Create new chart myChart = new Chart(ctx, { type: 'line', data: { labels: angles, datasets: [{ label: 'Torque (Nm)', data: torques, borderColor: '#004a99', fill: false, tension: 0.1 }, { label: 'Perpendicular Force (N)', data: perpendicularForces, borderColor: '#28a745', fill: false, tension: 0.1 }] }, options: { responsive: true, maintainAspectRatio: true, // Allow aspect ratio to be managed scales: { x: { title: { display: true, labelString: 'Angle of Force (degrees)' } }, y: { title: { display: true, labelString: 'Magnitude (Nm or N)' } } }, plugins: { tooltip: { callbacks: { label: function(context) { var label = context.dataset.label || ''; if (label) { label += ': '; } if (context.parsed.y !== null) { label += context.parsed.y.toFixed(2); } return label; } } } } } }); } function calculateTorque() { var weightInput = document.getElementById('weight'); var distanceInput = document.getElementById('distance'); var angleInput = document.getElementById('angle'); var weightError = document.getElementById('weightError'); var distanceError = document.getElementById('distanceError'); var angleError = document.getElementById('angleError'); var weight = parseFloat(weightInput.value); var distance = parseFloat(distanceInput.value); var angle = parseFloat(angleInput.value); var g = 9.81; // Acceleration due to gravity in m/s^2 // Reset errors weightError.textContent = ''; distanceError.textContent = ''; angleError.textContent = ''; var isValid = true; if (isNaN(weight) || weight <= 0) { weightError.textContent = 'Please enter a positive weight.'; isValid = false; } if (isNaN(distance) || distance <= 0) { distanceError.textContent = 'Please enter a positive distance.'; isValid = false; } if (isNaN(angle) || angle 180) { angleError.textContent = 'Angle must be between 0 and 180 degrees.'; isValid = false; } if (!isValid) { document.getElementById('primaryResult').textContent = '–'; document.getElementById('appliedForce').textContent = '–'; document.getElementById('leverArmLength').textContent = '–'; document.getElementById('perpendicularForce').textContent = '–'; return; } var appliedForce = weight * g; var angleRad = angle * Math.PI / 180; var perpendicularForce = appliedForce * Math.sin(angleRad); var torque = distance * perpendicularForce; // Simplified: distance * appliedForce * sin(angleRad) document.getElementById('primaryResult').textContent = torque.toFixed(2) + ' Nm'; document.getElementById('appliedForce').textContent = appliedForce.toFixed(2) + ' N'; document.getElementById('leverArmLength').textContent = distance.toFixed(2) + ' m'; document.getElementById('perpendicularForce').textContent = perpendicularForce.toFixed(2) + ' N'; updateChart(); // Update chart after calculation } function resetInputs() { document.getElementById('weight').value = '1000'; document.getElementById('distance').value = '0.5'; document.getElementById('angle').value = '90'; document.getElementById('weightError').textContent = "; document.getElementById('distanceError').textContent = "; document.getElementById('angleError').textContent = "; document.getElementById('primaryResult').textContent = '–'; document.getElementById('appliedForce').textContent = '–'; document.getElementById('leverArmLength').textContent = '–'; document.getElementById('perpendicularForce').textContent = '–'; // Optionally reset chart if needed, but updateChart will run on next calculate if (myChart) { myChart.destroy(); myChart = null; } // Clear canvas context for a clean reset var ctx = chartCanvas.getContext('2d'); ctx.clearRect(0, 0, chartCanvas.width, chartCanvas.height); } function copyResults() { var primaryResult = document.getElementById('primaryResult').textContent; var appliedForce = document.getElementById('appliedForce').textContent; var leverArmLength = document.getElementById('leverArmLength').textContent; var perpendicularForce = document.getElementById('perpendicularForce').textContent; var resultsText = "Torque Calculation Results:\n\n"; resultsText += "Torque Needed: " + primaryResult + "\n"; resultsText += "Applied Force: " + appliedForce + "\n"; resultsText += "Lever Arm Length: " + leverArmLength + "\n"; resultsText += "Force Component Perpendicular: " + perpendicularForce + "\n\n"; resultsText += "Key Assumptions:\n"; resultsText += "- Using Earth's gravity (g = 9.81 m/s²)\n"; resultsText += "- Ignoring friction and system inefficiencies.\n"; // Use a temporary textarea to copy to clipboard var textarea = document.createElement('textarea'); textarea.value = resultsText; textarea.style.position = 'fixed'; // Prevent scrolling to bottom of page textarea.style.opacity = '0'; document.body.appendChild(textarea); textarea.focus(); textarea.select(); try { var successful = document.execCommand('copy'); var msg = successful ? 'Results copied to clipboard!' : 'Failed to copy results.'; // Optionally display a temporary message to the user console.log(msg); } catch (err) { console.log('Unable to copy results.', err); } document.body.removeChild(textarea); } // Initial calculation and chart update when the page loads document.addEventListener('DOMContentLoaded', function() { calculateTorque(); // Perform initial calculation with default values // Ensure chart is updated correctly on load if default values are valid var weight = parseFloat(document.getElementById('weight').value); var distance = parseFloat(document.getElementById('distance').value); if (!isNaN(weight) && weight > 0 && !isNaN(distance) && distance > 0) { updateChart(); } else { // Clear canvas if initial values are invalid var ctx = chartCanvas.getContext('2d'); ctx.clearRect(0, 0, chartCanvas.width, chartCanvas.height); } });

Leave a Comment