Answer:
// Program is written in C++
// Comments are used to explain some lines
// Only the required function is written. The main method is excluded.
#include<bits/stdc++.h>
#include<iostream>
using namespace std;
int divSum(int num)
{
// The next line declares the final result of summation of divisors. The variable declared is also
//initialised to 0
int result = 0;
// find all numbers which divide 'num'
for (int i=2; i<=(num/2); i++)
{
// if 'i' is divisor of 'num'
if (num%i==0)
{
if (i==(num/i))
result += i; //add divisor to result
else
result += (i + num/i); //add divisor to result
}
}
cout<<result+1;
}
Answer:
The minimum diameter for each cable should be 0.65 inches.
Explanation:
Since, the load is supported by two ropes and the allowable stress in each rope is 1500 psi. Therefore,
(1/2)(Weight/Cross Sectional Area) = Allowable Stress
Here,
Weight = 1000 lb
Cross-sectional area = πr²
where, r = minimum radius for each cable
(1/2)(1000 lb/πr²) = 1500 psi
500 lb/1500π psi = r²
r = √1.061 in²
r = 0.325 in
Now, for diameter:
Diameter = 2(radius) = 2r
Diameter = 2(0.325 in)
<u>Diameter = 0.65 in</u>
Answer:
The governing ratio for thin walled cylinders is 10 if you use the radius. So if you divide the cylinder´s radius by its thickness and your result is more than 10, then you can use the thin walled cylinder stress formulas, in other words:
- if
then you have a thin walled cylinder
or using the diameter:
- if
then you have a thin walled cylinder
Answer:
Explanation:
When white is inside a , there's not enough air inside the to cause the water to
to make the sticky. Basically, the protects the from the air and keeps the runny.
Answer:
Temperature
Explanation:
In an ideal gas the specific enthalpy is exclusively a function of Temperature only this can be also written as h = h(T)
A gas is said be ideal gas if obeys PV= nRT law
And in a ideal gas both internal energy and specific enthalpy are a function of Temperature only. Therefore the constant volume and constant pressure specific heats Cv and Cp are also function of temperature only.