Three loads are connected in parallel to an AC supply
of 120∠0° V. The loads are 40∠30° Ω, 50 - j30 Ω
and 30 + j40 Ω.
a) Draw the circuit diagram
b) Determine the amplitude and phase angle of the supply current
graphically by constructing a
phasor diagram using a suitable scale of the load currents and
source voltage.
c) State the overall power factor using the answer from part
(b).
d) Construct another phasor diagram for the system that illustrates
an improved power factor to
unity.
e) Determine the VAR rating of the load required to achieve this
using its current phasor determined
graphically from part (d). State its capacitance or
inductance.
f) Draw the power triangles for the system before and after power
factor correction.
In: Electrical Engineering
In: Advanced Math
5. A proton and an electron are in a uniform electric field with magnitude 45 V/C. Which particle has the larger magnitude acceleration, and what is the magnitude of the acceleration? (e = 1.6×10−19 C, mp = 1.67×10−27 kg, me = 9.11×10−31 kg) A. the electron, 7.9×1012 m/s2 B. the proton, 4.3×1013 m/s2 C. the proton, 4.3×109 m/s2 D. the electron, 7.9×108 m/s2 E. the electron, 7.9×1010 m/s2
6. A +2q point charge is located at the origin (x = 0), and a –3q charge is at x = +d. What is the magnitude of the electric field at x = +2d ? Assume 1 4π0 = k. A. 7kq 2d2 B. 5kq 2d2 C. 4kq d2 D. 3kq 2d2 E. 5kq d2
In: Physics
An AC generator supplies an rms voltage of 115 V at 60.0 Hz. It is connected in series with a 0.550 H inductor, a 3.90 μF capacitor and a 311 Ω resistor. What is the impedance of the circuit?
What is the rms current through the resistor?
What is the average power dissipated in the circuit?
What is the peak current through the resistor?
What is the peak voltage across the inductor?
What is the peak voltage across the capacitor?
The generator frequency is now changed so that the circuit is in resonance. What is that new (resonance) frequency?
In: Physics
Describe the status of the N, Z, C, and V flags of the CPSR
after each of the following:
(a) ldr r1, =0xffffffff
ldr r2, =0x00000001
add r0, r1, r2
(b) ldr r1, =0xffffffff
ldr r2, =0x00000001
cmn r1, r2
(c) ldr r1, =0xffffffff
ldr r2, =0x00000001
adds r0, r1, r2
(d) ldr r1, =0xffffffff
ldr r2, =0x00000001
addeq r0, r1, r2
(e) ldr r1, =0x7fffffff
ldr r2, =0x7fffffff
adds r0, r1, r2
In: Computer Science
Issue # 2 - A V-belt from a 10 in. Diameter spindle pulley that rotates at 1800 rpm, to a 36 in. Diameter flat pulley. The wheelbase is 40 "and the throat angle is 40o. The friction coefficient between the belt and the grooved pulley is 0.2 and with the flat pulley it is also 0.2. The cross section of the straps is a trapezoid with parallel sides of 1.5 "and 0.75", with a height between them of 1 ". The weight of this belt is 0.04 lbf / in3, and the maximum allowable tension on each belt is 200 lbf. Determine: a) How many straps are needed. b) The Torque applied in the transmission, c) The Transmitted power. Note: Consider locating the center of gravity of the belt cross section in order to correct the actual pulley diameter as the band on the splined pulley is slightly outward.)
In: Mechanical Engineering
I have posted this earlier, but it seems that the code part was cutoff, therefore, this is re post with full code.
In the program the "case: 'C'" doesn't seem to function correctly,
We were told to write a book tracking program, and it takes inputs and once all the book info such as ISBN, date, author, course number, etc are put in then input, then we can print them out, by using the print functions that are defined in the program. Example:
the formats are as follows, when defining the book: "B-ISBN-TITLE"
So then in the terminal once the code compiles I can input: "B 1234567890123 Title of book"
and thus that book is defined, and I needed to make the code print the books info out and it's format were "GB-ISBN"
So then in the terminal after the book is defined I can type "GB 1234567890123" and the isbn and books title will be printed out that were define above.
NOW my problem is with the C which defines a course and it's format is "C-Department Code-Course Number-Name"
So if type "C CSEC 215 Name of the course" it should store it, until I use the print function "PC" which will print out the course that are defined. BUT I am getting an "abort message, out of range", and it points the error at the "case: C" switch statement in the code.
Can someone take a look at the code and help me figure out the solution,
Here is the code:
else if(code == "PY")
{
int pmonth, pyear, checkMonth, checkYear;
int ch;
iss>>checkMonth>>ch>>checkYear;
for(int i=0; i<bookCounter; i++)
{
istringstream isstreamer(books[i]->publicationDate);
isstreamer>>pmonth>>ch>>pyear;
if((pyear==checkYear &&
pmonth>checkMonth)||(pyear>checkYear))
{
cout<<books[i]->isbn<<"
"<<books[i]->title<<"\n";
}
}
}
else if(code=="PM")
{
double average = 0, max = 0, min = 100000;
int count = 0;
int deptCode;
iss>>deptCode;
for(int i=0; i<classCounter; i++)
{
if(classes[i]->course->deptCode==deptCode)
{
average +=classes[i]->book->usedRate ==
-1?0:classes[i]->book->usedRate;
average +=classes[i]->book->newRate ==
-1?0:classes[i]->book->newRate;
average +=classes[i]->book->rentedRate ==
-1?0:classes[i]->book->rentedRate;
average +=classes[i]->book->eRate ==
-1?0:classes[i]->book->eRate;
if(classes[i]->book->usedRate != -1)
{
if(classes[i]->book->usedRate > max) max =
classes[i]->book->usedRate;
if(classes[i]->book->usedRate < min &&
classes[i]->required) min =
classes[i]->book->usedRate;
count++;
}
if(classes[i]->book->newRate != -1)
{
if(classes[i]->book->newRate > max) max =
classes[i]->book->newRate;
if(classes[i]->book->newRate < min &&
classes[i]->required) min =
classes[i]->book->newRate;
count++;
}
if(classes[i]->book->rentedRate != -1)
{
if(classes[i]->book->rentedRate > max) max =
classes[i]->book->rentedRate;
if(classes[i]->book->rentedRate < min &&
classes[i]->required) min =
classes[i]->book->rentedRate;
count++;
}
if(classes[i]->book->eRate != -1)
{
if(classes[i]->book->eRate > max) max =
classes[i]->book->eRate;
if(classes[i]->book->eRate < min &&
classes[i]->required) min = classes[i]->book->eRate;
count++;
}
}
}
cout<<"Average: "<<average/count<<" Min Cost:
"<<min<<" Max Cost: "<<max<<endl;
}
}
int main()
{
cout<<"Enter 'quit' to quit the program\n\n";
for (string line; getline(std::cin, line);) {
if(line == "quit")
exit(0);
else
{
string code;
istringstream iss(line);
iss>>code;
long newISBN = 0;
int bookIndex = 0;
char updateCode;
switch(code.at(0))
{
case 'B': books[bookCounter] = new Book;
iss>>books[bookCounter]->isbn;
books[bookCounter]->title = iss.str().substr(iss.tellg());
bookCounter++;
break;
case 'D': iss>>newISBN;
bookIndex = getBook( newISBN);
iss>>updateCode;
if(updateCode=='A')
books[bookIndex]->author = iss.str().substr(iss.tellg());
else if(updateCode=='E')
iss>>books[bookIndex]->edition;
else iss>>books[bookIndex]->publicationDate;
break;
case 'M': iss>>newISBN;
double cost;
bookIndex = getBook( newISBN);
iss>>cost>>updateCode;
if(updateCode=='N') books[bookIndex]->newRate = cost;
else if(updateCode=='U') books[bookIndex]->usedRate =
cost;
else if(updateCode=='R') books[bookIndex]->rentedRate =
cost;
else if(updateCode=='E') books[bookIndex]->eRate = cost;
break;
case 'C': course[courseCounter] = new Course; //Help with
this case, error thrown here.
iss>>course[courseCounter]->deptCode>>course[courseCounter]->courseNumber;
course[courseCounter]->name =
iss.str().substr(iss.tellg());
courseCounter++;
break;
case 'A': iss>>newISBN;
int deptCode, courseNum, courseIndex;
iss>>deptCode>>courseNum;
courseIndex = getCourse( courseNum, deptCode);
bookIndex = getBook( newISBN);
classes[classCounter] = new Class;
classes[classCounter]->book = books[bookIndex];
classes[classCounter]->course = course[courseIndex];
iss>>classes[classCounter]->sectionNumber;
iss>>classes[classCounter]->required;
classCounter++;
break;
case 'G': printBooks(code, iss); break;
case 'P': printAllInfo(code, iss); break;
}
}
}
}
In: Computer Science
Returns earned over a given time period are called realized returns. Historical data on realized returns is often used to estimate future results. Analysts across companies use realized stock returns to estimate the risk of a stock.
Consider the case of Celestial Crane Cosmetics Inc. (CCC):
Five years of realized returns for CCC are given in the following table. Remember:
| 1. | While CCC was started 40 years ago, its common stock has been publicly traded for the past 25 years. |
| 2. | The returns on its equity are calculated as arithmetic returns. |
| 3. | The historical returns for CCC for 2012 to 2016 are: |
|
2012 |
2013 |
2014 |
2015 |
2016 |
|
|---|---|---|---|---|---|
| Stock return | 22.50% | 15.30% | 27.00% | 37.80% | 11.70% |
Given the preceding data, the average realized return on CCC’s stock is ___ .
The preceding data series represents of CCC’s historical returns. Based on this conclusion, the standard deviation of CCC’s historical returns is___ .
If investors expect the average realized return from 2012 to 2016 on CCC’s stock to continue into the future, its coefficient of variation (CV) will be ___ .
In: Finance
Concord Inc. reported the following pretax income (loss) and related tax rates during the years 2013–2019.
| Pretax Income (Loss) | Tax Rate | |
| 2013 | $37,000 | 30% |
| 2014 | $24,700 | 30% |
| 2015 | $50,100 | 30% |
| 2016 | $81,000 | 40% |
| 2017 | ($176,500) | 45% |
| 2018 | $72,800 | 40% |
| 2019 | $109,800 | 35% |
Pretax financial income (loss) and taxable income (loss) were the same for all years since Concord began business. The tax rates from 2016–2019 were enacted in 2016.
Prepare the journal entries for the years 2017–2019 to record income taxes payable (refundable), income tax expense (benefit), and the tax effects of the loss carryback and carryforward. Assume that Concord elects the carryback provision where possible and expects to realize the benefits of any loss carryforward in the year that immediately follows the loss year.
Prepare the portion of the income statement, starting with “Operating loss before income taxes,” for 2017.
Prepare the portion of the income statement, starting with “Income before income taxes,” for 2018.
In: Accounting
On January 1, 2015, Charmin Manufacturing Company purchased a machine for $220,000. The company expects to use the machine a total of 80,000 hours over the next 10 years. The estimated sales price of the machine at the end of 10 years is $10,000. The company used the machine 8,000 hours in 2015 and 12,000 in 2016.
Requirements:
1. Compute and show workings for the deprecation expense to be charged using the straight line, units of production and double-declining methods of deprecation for 2015 and 2016. (Round off answers to the nearest dollar where applicable)
2. Compute the net book value for 2015 and 2016 if the company adopted the double declining method of deprecation.
Question B
Based on the above information, assume that Charmin Manufacturing company adopted the straight-line method and sold the machine for $180,000 on July 1st, 2017.
Requirements:
1. Prepare a statement showing the computation of the gain or loss on the disposal of the machine.
2. Prepare a compound journal entry to record the disposal of the fixed asset as at July 1st, 2017. (Round off answer to the nearest dollar).
In: Accounting