Answer:
work done = 48.88 ×
J
Explanation:
given data
mass = 100 kN
velocity = 310 m/s
time = 30 min = 1800 s
drag force = 12 kN
descends = 2200 m
to find out
work done by the shuttle engine
solution
we know that work done here is
work done = accelerating work - drag work - descending work
put here all value
work done = ( mass ×velocity ×time - force ×velocity ×time - mass ×descends ) 10³ J
work done = ( 100 × 310 × 1800 - 12×310 ×1800 - 100 × 2200 ) 10³ J
work done = 48.88 ×
J
Answer:
<em>Python code is as follows:
</em>
********************************************************************************
#function to get number up to any number of decimal places
def toFixed(value, digits):
return "%.*f" % (digits, value)
print("Enter the price: ", end='', flush=True) #prompt for the input of price
price = float(input()) #taken input
totalCost = price + 0.05 * price #calculating cost
print("Total Cost after the sales tax of 5% is applied: " + toFixed(totalCost,2)) #print and output totalCost
************************************************************************************