Answer:
CARBON
Explanation:
HOPE THIS HELPS SORRY FOR CAPS
Answer:
β =
= 0.7071 ≈ 1 ( damping condition )
closed-form expression for the response is attached below
Explanation:
Given : x + 2x + 2x = 0 for Xo = 0 mm and Vo = 1 mm/s
computing a solution :
M = 1,
c = 2,
k = 2,
Wn =
=
next we determine the damping condition using the damping formula
β =
= 0.7071 ≈ 1
from the condition above it can be said that the damping condition indicates underdamping
attached below is the closed form expression for the response
Answer:
The Euler buckling load of a 160-cm-long column will be 1.33 times the Euler buckling load of an equivalent 120-cm-long column.
Explanation:
160 - 120 = 40
120 = 100
40 = X
40 x 100 / 120 = X
4000 / 120 = X
33.333 = X
120 = 100
160 = X
160 x 100 /120 = X
16000 / 120 = X
133.333 = X
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;
}