Answer:
35
Explanation: I really dont even know, I just used up all my tries on it and got it wrong on every other thing i chose. So it's 35 i believe cause its the only answer i didnt choose.
Answer:
a) ![\frac{Ws}{Es} = \frac{200}{1+1.2s}](https://tex.z-dn.net/?f=%5Cfrac%7BWs%7D%7BEs%7D%20%20%3D%20%5Cfrac%7B200%7D%7B1%2B1.2s%7D)
b) attached below
c) type zero system
d) k > ![\frac{g}{200}](https://tex.z-dn.net/?f=%5Cfrac%7Bg%7D%7B200%7D)
e) The gain K increases above % error as the steady state speed increases
Explanation:
Given data:
Motor voltage = 12 v
steady state speed = 200 rad/s
time taken to reach 63.2% = 1.2 seconds
<u>a) The transfer function of the motor from voltage to speed</u>
let ;
be the transfer function of a motor
when i/p = 12v then steady state speed ( k1 ) = 200 rad/s , St ( time constant ) = 1.2 sec
hence the transfer function of the motor from voltage to speed
= ![\frac{Ws}{Es} = \frac{200}{1+1.2s}](https://tex.z-dn.net/?f=%5Cfrac%7BWs%7D%7BEs%7D%20%20%3D%20%5Cfrac%7B200%7D%7B1%2B1.2s%7D)
<u>b) draw the block diagram of the system with plant controller and the feedback path </u>
attached below is the remaining part of the detailed solution
c) The system is a type-zero system because the pole at the origin is zero
d) ) k > ![\frac{g}{200}](https://tex.z-dn.net/?f=%5Cfrac%7Bg%7D%7B200%7D)
Answer:
Tack coat is a sprayed application of an asphalt binder upon an existing asphalt or Portland cement concrete pavement prior to an overlay, or between layers of new asphalt concrete.
Explanation:
Answer:
Codes for each of the problems are explained below
Explanation:
PROBLEM 1 IN C++:
#include<iostream>
using namespace std;
//fib function that calculate nth integer of the fibonacci sequence.
void fib(int n){
// l and r inital fibonacci values for n=1 and n=2;
int l=1,r=1,c;
//if n==1 or n==2 then print 1.
if(n==1 || n==2){
cout << 1;
return;
}
//for loop runs n-2 times and calculates nth integer of fibonacci sequence.
for(int i=0;i<n-2;i++){
c=l+r;
l=r;
r=c;
cout << "(" << i << "," << c << ") ";
}
//prints nth integer of the fibonacci sequence stored in c.
cout << "\n" << c;
}
int main(){
int n; //declared variable n
cin >> n; //inputs n to find nth integer of the fibonacci sequence.
fib(n);//calls function fib to calculate and print fibonacci number.
}
PROBLEM 2 IN PYTHON:
def fib(n):
print("fib({})".format(n), end=' ')
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
if __name__ == '__main__':
n = int(input())
result = fib(n)
print()
print(result)
Answer:
The correct option is;
D. Market...Command
Explanation:
In a mixed economy, socialism and capitalism are combined in the economic policy, such the economy allows ownership of and offers protection for private property as well as provision of certain degree of allowance of capital utilization by the private sector. The government of a country with a mixed economic system can disrupt, obstruct, or restrict the activities taking place in the economy in order to meet the social objectives of the country's.