I'm working on a project where I need to design a transmission line tap for a station generator. The parameters include sizing three switches for the tap where at least one is a loop break switch. From where to start? What kind of calculations are needed to size the switches? What are those switches?
In: Electrical Engineering
Please design an oscillator with a a series LCR filter and an opamp.
In: Electrical Engineering
With respect to Nyquist Sampling rate, what are the disadvantages of i) under-sampling, ii) over-sampling?
In: Electrical Engineering
Discuss how ecological effect can be used to determine if or which fuel cell can be used to power a residential complex.
In: Electrical Engineering
Discuss how ecological effect can be used to determine if or which fuel cell can be used to power a residential complex.
In: Electrical Engineering
A device consisting of a resistor in series with an inductor operates at 60Hz from an AC power supply. If R = 10? and L = 26.5mH, what capacitance should be added in parallel with the device to achieve unity power factor??
In: Electrical Engineering
Please briefly explain the concepts of the virtual machines and physical server are connected together, would there router swtiches invovled?
In: Electrical Engineering
write a program for the microcontroller-msp430fr6989 using code composer studio not assembly language.
write a code that transmits a single character and lights the red LED upon receiving that character. The board will "talk" to itself. The green LED should turn on whenever a message is sent and the LCD will display the message being received.
In: Electrical Engineering
A plant owner is considering replacing each of the metal halide lamps in his facility with a 6-lamp T8 fixture. The plant has a total of 31 fixtures. Determine the annual energy savings for the proposed lighting upgrade (in kWh). Information about each light type is given below:
Metal Halides Each lamp is rated at 400 W with a ballast factor of 1.17. Lamp intensity is 22,000 lumens. Lamp lifetime is 20,000 hours. The cost of a replacement lamp is $14, and the time required to replace a bulb is 27 minutes. The cost of the fixture is $26.
T8 Fluorescent Each lamp is rated at 32 W with a ballast factor of 0.91. Lamp intensity is 3,000 lumens. Lamp lifetime is 30,000 hours. The cost of a replacement lamp is $2, and the time required to replace a bulb is 19 minutes. The cost of the fixture is $22.
Plant Information The plant operates for 7,967 hours per year. The labor rate is $15. The time required to retrofit an entire fixture is 38 minutes
In: Electrical Engineering
What is a Tera-Tera system in a power system network mean and how does it operate? How does current flow from one earth electrode in a house to the electrode earth of the substation? like how does it take that path, if there is no connection between them; other than the fact they are both buried underground.
In: Electrical Engineering
what are the applications for each one of the following
Diode Resistor Logic, BJT, NMOS, CMOS, and Bi-CMOS?
In: Electrical Engineering
Design an elevator control system for an 8 floors building, draw the logic diagram, and illustrate the system with the following situations:
1. The car is on the ground floor, John Doe wants to go from ground floor to 7th floor;
2. The car is on 8th floor, John Doe wants to go from 6th floor to the ground floor;
3. The car is moving up from 4th floor to 7th floor, John Doe wants to go from 6th floor to the ground floor;
4. The car is moving down from 7th floor to 4th floor, John Doe wants to go from 6th floor to the ground floor.
In: Electrical Engineering
Provide the needs and objective statements for a portable Wireless EEG (Electroencephalogram) device for medical applications ?
In: Electrical Engineering
What are the advantages and disadvantages of the NMOS?
In: Electrical Engineering
Assignment Instructions:
1) The Factorial The factorial of a non-negative integer ??, denoted by ??!, is the product of all positive integers less than or equal to ??. The textbook has an example of a recursive MIPS implementation of factorial. Additionally, a simplified version of the MIPS assembly language recursive implementation of the factorial function is attached. Trace the factorial example carefully using QTSPIM
2) Recursive definition of multiplication The function ??????????(??, ??) for two positive integers 1 ? ??, and 1 ? ??, is defined as the following: ??????????(??, 1) = ??; ??????????(??, ??) = ?? + ??????????(??, ?? ? 1) Write a recursive version of ??????????() in C or C++ and a pseudo C program (based on chapter 2 in the book) then use these programs to develop a MIPS program that gets as input two integers 0 < ?? ? 255, and 0 < ?? ? 255, and returns the result of ??????????(??, ??) in $v1. Your deliverable should be the pseudo C and the assembly level function
Given code file:
#####################################################################################
# Functional Description: Main program to test Factorial function # Enter a negative number to terminate run
#####################################################################################
.data
.align 2
prompt: .asciiz "\n\n Give me a value for \"N\" : "
msg: .asciiz " N factorial is: "
bye: .asciiz " \n *** Good-Bye ***"
.text
main: addiu $sp, $sp, -8 #Allocate space
mloop:
li $v0, 4
la $a0, prompt
syscall
li $v0, 5 #Get value for N
syscall
bltz $v0, quit
sw $v0, 0 ($sp)
jal Fac # Call factorial
li $v0, 4 # Print message
la $a0, msg
syscall
lw $a0, 4($sp) #Get result
li $v0, 1
syscall #Print factorial
b mloop
quit:
addiu $sp, 8 # Deallocate space
li $v0, 4 la $a0, bye
syscall li $v0, 10
syscall
#####################################################################################
# Functional Description: Recursive Factorial Fac (N: in, N! :out)
#####################################################################################
Fac:
lw $a0, 0 ($sp)
bltz $a0, Problem
addi $t1, $a0, -13
bgtz $t1, Problem # 13 is largest value we can
# accept
addiu $sp, $sp, -16 # Allocate
sw $ra, 12 ($sp) # Save return address
sw $a0, 8($sp)
slti $t0, $a0, 2 # If N is 1 or 0, then return the value 1
beqz $t0, Go
li $v0, 1
b facret
Go:
addi $a0, $a0, -1 #
sw $a0, 0 ($sp) # Pass N-1 to factorial function
jal Fac # Recursive call
lw $v0, 4($sp) # Get (N-1) ! back.
lw $ra, 12 ($sp)
lw $a0, 8 ($sp)
mult $v0, $a0 # N* (N-1) !
mflo $v0
facret:
addiu $sp, $sp, 16 # Deallocate
sw $v0, 4 ($sp)
jr $ra
Problem:
sw $0, 4 ($sp)
jr $ra
Second give code file:
#####################################################################################
# Functional Description: Main program to test Factorial function # Enter a negative number to terminate run
#####################################################################################
.data
.align 2
.text
main: addiu $sp, $sp, -8 # Allocate space
mloop:
li $v0, 4 # Get value for N
sw $v0, 0 ($sp)
jal Fac # Call factorial
or $v1, $v0, $0
addiu $sp, 8 # Deallocate space
li $v0, 10
syscall
#####################################################################################
# Functional Description: Recursive Factorial Fac (N: in, N! :out)
#####################################################################################
Fac:
lw $a0, 0 ($sp)
addiu $sp, $sp, -16 # Allocate
sw $ra, 12 ($sp) # Save return address
sw $a0, 8($sp)
slti $t0, $a0, 2 # If N is 1 or 0, then return the value 1
eqz $t0, Go
li $v0, 1
b facret
Go:
addi $a0, $a0, -1 #
sw $a0, 0 ($sp) # Pass N-1 to factorial function
jal Fac # Recursive call
lw $v0, 4($sp) # Get (N-1) ! back.
lw $ra, 12 ($sp)
lw $a0, 8 ($sp)
mult $v0, $a0 # N* (N-1) !
mflo $v0
facret:
addiu $sp, $sp, 16 # Deallocate
sw $v0, 4 ($sp)
jr $ra
In: Electrical Engineering