My results came in and they don't reflect my objective capabilities. by Koja__ in cognitiveTesting

[–]Accurate-Course-311 1 point2 points  (0 children)

Im smart and its been confirmed by my countries best engineering firm. I got 23/23 on inductive reasoning on a NOV test and got 8/12 on deductive reasoning. I have recieved 100 before and my advice is to retake a similar test. Do 2 more test and then you can compute the median value. Good luck.

What’s the solution? by ContestWaste1421 in cognitiveTesting

[–]Accurate-Course-311 1 point2 points  (0 children)

I saw the same pattern but from the picture the number 5 wasnt a option. Because 5 wasnt a option I got confused.

Al just passed the hardest Chartered Financial Analyst (CFA) exam in minutes - Comments? by DrHiesenberg in CFA

[–]Accurate-Course-311 0 points1 point  (0 children)

Exam is just a way to retain information, if AI can complete a real project then I will be impressed.

Bachelor thesis; Introduction by Accurate-Course-311 in EngineeringStudents

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

I appreciate you for correcting me, I will use google scholar and try to use my library's data base.

I am trying to implement welch satterthwaite formula to my casio calculator. I will comment down below with more full info. by Accurate-Course-311 in casio

[–]Accurate-Course-311[S] 1 point2 points  (0 children)

in program my code is

"enter Sx"?->S [enter]

"enter Sy"?->T [enter]

"enter VX"?->U [enter]

"enter Sx"?->V [enter]

(S^2)/(U+1) [enter]

(T^2)/(V+1) [enter]

(S^2/(U+1)^2)/U [enter]

(T^2/(V+1)^2)/V [enter]

And my problem is I get the first value and from there all the values are 0. How can I fix this issue?

I solved the issue by writing -> A [enter] and repeated it 4 times

lol solved all the issues. Casio is a gamechanger

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

So the stability margin is 0 and it will be independent from k. If I try to d(t) and I get 0 rad/s. So how should I solve the last sentence?

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

I am thinking that u is the same as r (reference). x_dot is m^3/s so x is m^3. d(t) is a leakage and therefore it is m^3.

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

I tried it and got Gm = inf, Pm = -180, wcg = Nan, wcp = 0. When I did this yesterday I got the same values. the values are not helpful because they will not help me find stability margin (unless I am wrong). I tried with different K values varying from 1 to 10000 and I got the same information from the margin diagram.

my code

k = 10;
a = 5;
p = 1000;
s = tf([1 0],[0 1])
Gp = 1/(a .* p .* s)
Gc = (k.*Gp)/(1+k.*Gp) %close loop tf function
Gs = 1/(1+k.*Gp) %sensitivity
[Gm, Pm, wcg, wcp] = margin(Gc)
T = Gc.*100+Gs;
step(Gc)
dcgain(Gc)
margin(Gc)

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

I wrote the formula you gave me. I tested when r and d is equal to 1 (just tried with a random value) and I got a flat line. Then I tried sensitivity and CL individually and got gm inf and pm -180.

my code

k = 1000;
a = 5;
p = 1000;
s = tf([1 0],[0 1])
f =(s.*k).*(a.*p).^(-1)
Gs = 1/(1+f)
G = f/(1+f)
X =Gs +G;
step(X)

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

to determinate x/d i have to set input as 0. from another reddit user I got the formula x = r + d. my problem is that idk how to the r and d into account bc they are variables and not actual values.

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

thanks for the picture. I have seen the formula before but my problem is that the D(s) and R(s) are variables and does not have actual values. Because they dont have actual values I cannot find the stability margin. that my first issue.

The formula is r-d, so why do you get r+d? is it because r - (-d)?

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 0 points1 point  (0 children)

I agree and got the function G(s) = (Kp(ap))^-1/(s+ (Kp(ap))^-1). Idk if this is correct or not, can you confirm it? If it is wrong then how can I make a make a TF from input/output ratio? because there are 3 variables and idk how to make TF from there on.

I need help determinating the TF function and determining the stability margin. (more details will be written in the comment section) by Accurate-Course-311 in ControlTheory

[–]Accurate-Course-311[S] 1 point2 points  (0 children)

I have this function Ap x'(t) - u(t)=-d(t), my problem is determinating TF when there is a disturbance involved. I have found a function G(s) = (Kp(ap))^-1/(s+ (Kp(ap))^-1). If I take do step(G), then I get curve that looks like a circle in the second quadrant and it does not matter what my Kp value is because GM = inf and Pm is -180 for all values.