Ace - AI Tutor
Ask Our Educators
Textbooks
My Library
Flashcards
Scribe - AI Notes
Notes & Exams
Download App
mark smith

mark s.

Divider

Questions asked

BEST MATCH

Which of the following vessels lie in the coronary sulcus? Multiple Choice The anterior and posterior interventricular arteries The superior and inferior venae cavae The great and middle cardiac veins The right and left semilunar arteries The RCA and circumflex branch of the LCA

View Answer
divider
BEST MATCH

Problem 2 - Linearized Model: Cubic Equation of State (15 pts) The van der Waals (vdW) cubic equation of state is a model that describes the thermody- namic properties of a non-ideal gas using two parameters a and b : P=(RT)/(V_(m)-b)-(a)/(V_(m)^(2)) where P is the pressure, R is the gas constant, T is the temperature, and V_(m) is the molar vol- ume. We would like to use linear regression to solve for the parameters of the model in the case of methane gas. Experimental data for the pressure as a function of molar volume is provided in the "eos-data.dat" file. All data was collected at T=300K. However, since the equation of state is not linear with respect to the parameters, a linearized version should be derived first. (a) Derive a linearized form of the vdW equation of state shown above. There are several ways to linearize the equation of state. However, some methods are better than others; aim for three unknowns where one is technically a function of the other two. Fi- nally, rewrite into general matrix form (Ax=b) where x is the vector of unknowns. (b) Using Python and the matrix method for linear least squares regression, solve and re- port the model parameters for a and b. Sanity check that your third unknown is close to its expected value based on the fit values of a and b. (c) Code a function in Python that computes an array of pressures given an array of molar volumes and the model parameters a and b. Use this function to plot the model predic- tions against the experimental data for the pressure of methane. (d) Finally, discuss if other direct solvers, e.g., Gaussian Elimination, and iterative solvers, e.g., Gauss-Seidel, would be appropriate for this problem. Explain your reasoning with evidence. "eos-data.dat" file content: # Vm(L/mol) P(bar) 0.100 207.621 0.127 154.076 0.162 121.974 0.207 98.645 0.264 80.085 0.336 64.848 0.428 52.274 0.546 41.941 0.695 33.509 0.886 26.677 1.129 21.175 1.438 16.769 1.833 13.254 2.336 10.460 2.976 8.245 3.793 6.493 4.833 5.109 6.158 4.018 7.848 3.159 10.000 2.482Problem 2 - Linearized Model: Cubic Equation of State (15 pts) The van der Waals (vdW) cubic equation of state is a model that describes the thermody- namic properties of a non-ideal gas using two parameters a and b : P=(RT)/(V_(m)-b)-(a)/(V_(m)^(2)) where P is the pressure, R is the gas constant, T is the temperature, and V_(m) is the molar vol- ume. We would like to use linear regression to solve for the parameters of the model in the case of methane gas. Experimental data for the pressure as a function of molar volume is provided in the "eos-data.dat" file. All data was collected at T=300K. However, since the equation of state is not linear with respect to the parameters, a linearized version should be derived first. (a) Derive a linearized form of the vdW equation of state shown above. Let's define a new variable, (z=(V)/(V-b)). So, the equation becomes: P=(RT)/(z-1)-(a)/((z-1)^(2)) (eta =(a)/(R^(2)T^(2))) and ,(alpha =(b)/(RT)). The equation now reads: P=(RT)/(z-1)-(a)/((z-1)^(2))=(RT)/(z)-(a)/(z^(2)) Create new variables: (x_(1)=(T)/(z)),(x_(2)=z), and ,(x_(3)=(1)/(z)) The equation can be rewritten as follows: P=Rx_(1)+eta x_(2)+alpha x_(3) This equation is now linear in relation to the parameters alpha, beta, and R. Finally, rewrite this equation in the general matrix form (Ax=b), Start Answering from here using the equation above (b) Using Python and the matrix method for linear least squares regression, solve and re- port the model parameters for a and b. Sanity check that your third unknown is close to Problem 2-Linearized Model:Cubic Equation of State(15 pts) The van der Waals (vdW cubic equation of state is a model that describes the thermody namic properties of a non-ideal gas using two parameters a and b: RT Vm-bVm where P is the pressure,R is the gas constant,T is the temperature,and Vm is the molar vol ume. We would like to use linear regression to solve for the parameters of the model in the case of methane gas. Experimental data for the pressure as a function of molar volume is provided in the "eos-data.dat"file.All data was collected at T = 300 K. However, since the equation of state is not linear with respect to the parameters, a linearized version should be derived first. (a Derive a linearized form of the vdW equation of state shown above Solution - The original van der Waals (vdW) equation of state is: (P=RT -) Let's define a new variable, (z = v). So, the equation becomes: P=RT- 3=R) anda=RT The equation now reads: [-=-=a] Create new variables: =xpuz=x=Ix The equation can be rewritten as follows: [P = Rx1 + x2 + x3] This equation is now linear in relation to the parameters alpha, beta,and R. Finally, rewrite this equation in the general matrix form (Ax = b), Start Answering from here using the equation above (b Using Python and the matrix method for linear least squares regression, solve and re- port the model parameters for a and b.Sanity check that your third unknown is close to its expected value based on the fit values of a and b. (c) Code a function in Python that computes an array of pressures given an array of molar volumes and the model parameters a and b.Use this function to plot the model predic- tions against the experimental data for the pressure of methane. (d) Finally, discuss if other direct solvers, e.g., Gaussian Elimination, and iterative solvers, e.g., Gauss-Seidel, would be appropriate for this problem. Explain your reasoning with evidence.

View Answer
divider
BEST MATCH

A dynamical system with input signal $u$ is described by the following pair of differential equations $5\dot{x} + 0.5 \tan y - xy^2 = 0$, $(x^2 + 1)\ddot{y} + 8x\dot{x}y + 3x = u$. (i) Linearise this system around an equilibrium point that [14 marks] corresponds to $y = 0$. Hint: start by writing the system in its state space representation (it has 4 states) and use Prop. 3.4 to characterise its equilibrium points. Introduce deviation variables if necessary. (ii) Determine the poles of the transfer function of the [3 marks] linearised system. (iii) Show that a P-controller is not a suitable choice for this [4 points] system. Hint: you may use the BIBO instability Theorem.

View Answer
divider
BEST MATCH

What are the initial values that must be used for TLRO, and TLR1 respectively in order to generate a PWM signal with a period of 10 ms, and a duty factor of 75%? Assume • The frequency is 50 MHz • Count-up configuration is used

View Answer
divider
BEST MATCH

A long, straight wire lies along the y-axis and carries a current 8.00 A in the -y-direction (Figure 1). In addition to the magnetic field due to the current in the wire, a uniform magnetic field B? with magnitude 1.50 × 10?? T is in the +x-direction. What is the magnitude of the total field at the point x = 0, z = 1.00 m in the xz-plane? B = 1.50 ? 10?? T Part B What is its direction? Part C What is the magnitude of the total field at the point x = 1.00 m, z = 0 in the xz-plane?

View Answer
divider
BEST MATCH

3. A two-stage compression refrigeration system using refrigerant-134a as the working fluid is considered. The fraction of the refrigerant that evaporates as it is throttled to the flash chamber, the amount of heat removed from the refrigerated space, the compressor work, and the COP are to be determined.

View Answer
divider
BEST MATCH

For the active first order filter circuit shown in Figure 1, a) Find the transfer function $H(s)$ of the filter circuit; (5 marks) b) Find the frequency response function $H(j\omega)$ of the filter circuit and obtain the magnitude and phase expressions of $H(j\omega)$; (10 marks) c) Find the DC ($\omega = 0$) gain of the filter circuit; (5 marks) d) Find the gain when the frequency approaches infinity, i.e., $\lim_{\omega \to \infty} H(j\omega)$; (5 marks) e) Calculate the -3dB cut off frequency in rad/sec of the filter with $R_1 = 1 k\Omega$, $R_2 = (a+10) k\Omega$, where a is the last digit of your VU student ID number, $C = 20nF$ with an ideal LM741 operational amplifier; (10 marks) f) Plot the straight-line approximation of the magnitude Bode diagram of $H(j\omega)$ using semi-log paper with $R_1 = 10 k\Omega$, $R_2 = 50k\Omega$, and $C = 20nF$; (10 marks) g) State the type of the filter according to the Bode plot obtained. (5 marks) Figure 1: Circuit for Question 1

View Answer
divider
BEST MATCH

Explain the four conditions that must be met in civil cases for the burden of proving any factual issue relevant to the determination of taxpayer liability to rest with the IRS.

View Answer
divider
BEST MATCH

In NH3 AgNO3 + AgCl + NH4OH → + HCl → MnCl2 + + [g] 159

View Answer
divider
BEST MATCH

27. Consider the matrices A through E below. \begin{align*} A &= \begin{bmatrix} 0.6 & 0.8\\ 0.8 & -0.6 \end{bmatrix}, & B &= \begin{bmatrix} 3 & 0\\ 0 & 3 \end{bmatrix},\\ C &= \begin{bmatrix} 0.36 & -0.48\\ -0.48 & 0.64 \end{bmatrix}, & D &= \begin{bmatrix} -0.8 & 0.6\\ -0.6 & -0.8 \end{bmatrix},\\ E &= \begin{bmatrix} 1 & 0\\ -1 & 1 \end{bmatrix} \end{align*} Fill in the blanks in the sentences below. We are told that there is a solution in each case. Matrix ______ represents a scaling. Matrix ______ represents an orthogonal projection. Matrix ______ represents a shear. Matrix ______ represents a reflection. Matrix ______ represents a rotation.

View Answer
divider