MATLAB Program for finding Error Coefficients

Q. The open-loop transfer function of a unity feedback control system is given by Find error coefficients (a). Kp  (b). Kv  (c). Ka Program % program for calculation of error coefficients % provided by electricalvoice.com clc clear all numg=10 deng=[1 6 10] %step input %calculation of error coefficient kp G=tf(numg, deng) kp=dcgain(G) Ess=1/(1+kp) %ramp input … Read more

MATLAB Program for Determining Time response of Transfer function

Q. Determine the time response for the following transfer function using MATLAB. Answer. First of all simplifying numerator(num) and denominator(den) of the transfer function respectively as num = s+2 den = s2+2s+2 Program % program for Determining Time response of Transfer function % provided by electricalvoice.com clc clear all num=[1 2]; den=[1 2 2]; sys5=tf(num,den) load … Read more

MATLAB Program for finding Poles & Zeroes of Transfer Function

Q. The transfer function of a system is given below Determines the poles and zeroes and show the pole-zero configuration in s-plane using MATLAB. First of all simplifying numerator(p1) and denominator(q1) of the transfer function respectively as p1=8s2+56s+96 q1=s4+4s3+9s2+10s Program % program for finding poles and zeroes of a transfer function % provided by electricalvoice.com clc … Read more

MATLAB Program for Plotting Two sine waves Connected Together

MATLAB Program for plotting Two sine waves connected together, one of which has twice the frequency of other. Program %Two sine waves connected together,one of which has twice the frequency of other %provided by electricalvoice.com clc clear all fr= input(‘Enter frequency in Hz:’); stptime = input(‘Enter Stop time in Second:’); frad = 2*pi*fr; t = … Read more

MATLAB Program for Drawing two circles one having radius twice the other

Using Matlab Draw two sine waves connected together, one of which has twice the frequency of other. Program %Program Code for Drawing two circles one having radius twice the other %provided by electricalvoice.com clc clear all x=input(‘Enter x-cordinate of center of circle:’); y=input(‘Enter y-cordinate of center of circle:’); r=input(‘Enter radius of circle:’); ang=0:0.01:2*pi; xp=r*cos(ang); yp=r*sin(ang); … Read more

Modulation & Demodulation

Modulation The term modulation means ‘to change‘ or ‘to modify‘. Modulation is the process of transmission of the information signal (low-frequency audio signal) using a high-frequency carrier signal. Modulation is the basic requirement for transmitting the message signal through free space.  Modulating Signal The information bearing signal is called the modulating signal. Modulated signal The signal … Read more

Amplitude Modulation – Applications & Advantages

Amplitude Modulation(AM) The process of varying amplitude of the high-frequency or carrier wave in accordance with the intelligence (code, voice or music) to be transmitted, keeping the frequency and phase of the carrier wave unchanged, is known as the amplitude modulation. Modulating Signal The information bearing signal is called modulating signal. Modulated signal The signal … Read more

Difference Between Moving Coil & Moving Iron Instruments

The comparison between Moving Coil & Moving Iron Instruments is given in the table below. S.No. Moving Coil Instruments Moving Iron Instruments 1. It works on the principle of DC motor. It works on the principles of magnetism. 2. Deflection torque is proportional to current. Deflection torque is proportional to the square of the current. 3. Damping is provided … Read more

Vacuum Tube Voltmeter (VTVM)

Q. What is VTVM? Answer. VTVM is a vacuum tube voltmeter. It makes the use of vacuum tube(s) as an active device. Q. Enlist the types of VTVMs? Answer. Average reading, peak reading, slide back, logarithmic, balanced Bridge and electrometer VTVMs are the different types of VTVM. Q. Enlist TVMs. Answer. 1. TVM with cascaded transistor. … Read more