Determine the drag on a small circular disk of 0.02-ft diameter moving 0.01 ft/s through oil with a specific gravity of 0.89 and a viscosity 10000 times that of water. The disk is oriented normal to the upstream velocity. By what percent is the drag reduced if the disk is oriented parallel to the flow?

Answers

Answer 1

Answer:

33.3%

Explanation:

Given that:

specific gravity (SG) = 0.89

Diameter (D) =  0.01 ft/s

Density of oil [tex]\rho= SG\rho _{h20} = 0.89 * 1.94=1.7266\frac{sl}{ft^3}[/tex]

Since the viscosity 10000 times that of water, The reynold number [tex]R_E=\frac{\rho VD}{\mu} =\frac{1.7266*0.01*0.01}{0.234}=7.38*10^{-4}[/tex]

Since RE < 1, the drag coefficient for normal flow is given as: [tex]C_{D1}=\frac{24.4}{R_E}= \frac{20.4}{7.38*10^{-4}}=2.76*10^4[/tex]

the drag coefficient for parallel flow is given as: [tex]C_{D2}=\frac{13.6}{R_E}= \frac{13.6}{7.38*10^{-4}}=1.84*10^4[/tex]

Percent reduced = [tex]\frac{D_1-D_2}{D_2} *100=\frac{2.76-1.84}{3.3}=33.3[/tex] = 33.3%


Related Questions

A steady green traffic light means

Answers

You can continue on forward through the traffic light....

Answer:

Its C. you may proceed, but only if the path is clear

Explanation:

I just gave Quiz and  its correct

Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount for the purchase of a given number of a single item. The method has two parameters, count and itemCost. 2. Derive a class BulkDiscount from DiscountPolicy, as described in the previous exercise. It should have a constructor that has two parameters, minimum and percent. It should define the method computeDiscount so that if the quantity purchased of an item is more than minimum, the discount is percent percent. 3. Derive a class BuyNItemsGetOneFree from DiscountPolicy, as described in Exercise 1. The class should have a constructor that has a single parameter n. In addition, the class should define the method computeDiscount so that every nth item is free. For example, the following table gives the discount for the purchase of various counts of an item that costs $10, when n is 3: count 1 2 3 4 5 6 7 Discount 0 0 10 10 10 20 20

4. Derive a class CombinedDiscount from DiscountPolicy, as described in Exercise 1. It should have a constructor that has two parameters of type DiscountPolicy. It should define the method computeDiscount to return the maximum value returned by computeDiscount for each of its two private discount policies. The two discount policies are described in Exercises 2 and 3. 5. Define DiscountPolicy as an interface instead of the abstract class described in Exercise 1.

Answers

Answer:

Java Code was used to define classes in the abstract discount policy,The bulk discount, The buy items get one free and the combined discount

Explanation:

Solution

Code:

Main.java

public class Main {

public static void main(String[] args) {

  BulkDiscount bd=new BulkDiscount(10,5);

BuyNItemsGetOneFree bnd=new BuyNItemsGetOneFree(5);

CombinedDiscount cd=new CombinedDiscount(bd,bnd);

System.out.println("Bulk Discount :"+bd.computeDiscount(20, 20));

  System.out.println("Nth item discount :"+bnd.computeDiscount(20, 20));

 System.out.println("Combined discount :"+cd.computeDiscount(20, 20));    

  }

}

discountPolicy.java

public abstract class DiscountPolicy

{    

public abstract double computeDiscount(int count, double itemCost);

}    

BulkDiscount.java  

public class BulkDiscount extends DiscountPolicy

{    

private double percent;

private double minimum;

public BulkDiscount(int minimum, double percent)

{

this.minimum = minimum;

this.percent = percent;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if (count >= minimum)

{

return (percent/100)*(count*itemCost); //discount is total price * percentage discount

}

return 0;

}

}

BuyNItemsGetOneFree.java

public class BuyNItemsGetOneFree extends DiscountPolicy

{

private int itemNumberForFree;

public BuyNItemsGetOneFree(int n)

{

  itemNumberForFree = n;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if(count > itemNumberForFree)

return (count/itemNumberForFree)*itemCost;

else

  return 0;

}

}

CombinedDiscount.java

public class CombinedDiscount extends DiscountPolicy

{

private DiscountPolicy first, second;

public CombinedDiscount(DiscountPolicy firstDiscount, DiscountPolicy secondDiscount)

{

first = firstDiscount;

second = secondDiscount;

}

at Override

public double computeDiscount(int count, double itemCost)

{

double firstDiscount=first.computeDiscount(count, itemCost);

double secondDiscount=second.computeDiscount(count, itemCost);

if(firstDiscount>secondDiscount){

  return firstDiscount;

}else{

  return secondDiscount;

}

}  

}

Two Electric field vectors E1 and E2 are perpendicular to each other; obtain its base
vectors.

Answers

Answer:

<E1, E2>.

Explanation:

So, in the question above we are given that the Two Electric field vectors E1 and E2 are perpendicular to each other. Thus, we are going to have the i and the j components for the two Electric Field that is E1 and E2 respectively. That is to say the addition we give us a resultant E which is an arbitrary vector;

E = |E| cos θi + |E| sin θj. -------------------(1).

Therefore, if we make use of the components division rule we will have something like what we have below;

x = |E2|/ |E| cos θ and y = |E1|/|E| sin θ

Therefore, we will now have;

E = x |E2| i + y |E1| j.

The base vectors is then Given as <E1, E2>.

How does a car batteray NOT die?

Answers

Answer:

bye hooking plugs up to it to amp it up

Sludge wasting rate (Qw) from the solids residence time (Thetac = mcrt) calculation. Given the following information from the previous problem. The total design flow is 15,000 m3/day. Theoretical hydraulic detention time (Theta) = 8 hours. The NPDES limit is 25 mg/L BOD/30 mg/L TSS.

Assume that the waste strength is 170 mg/L BOD after primary clarification.

XA=MLSS = 2200 mg/L,
Xw = Xu = XR = 6,600 mg/L,
qc = 8 days.

Make sure you account for the solids in the discharge.

What volume of sludge (Qw=m3/day) is wasted each day from the secondary clarifiers?

Answers

Answer:

The volume of sludge wasted each day from the secondary classifiers is Qw = 208.33 m^3 / day

Explanation:

Check the file attached for a complete solution.

The volume of the aeration tank was first calculated, V = 5000 m^3 / day.

The value of V was consequently substituted into the formula for the wasted sludge flow. The value of the wasted sludge flow was calculated to be Qw = 208.33 m^3 / day.

is sampled at a rate of to produce the sampled vector and then quantized. Assume, as usual, the minimum voltage of the dynamic range is represented by all zeros and the maximum value with all ones. The numbers should increase in binary order from bottom to top. Find the bit combination used to store each sample when rounded to the nearest integer between and (clipping may occur). Note: A partially-correct answer will not be recognized. You must answer all three correctly on the same

Answers

Answer:

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011

Explanation:

Assume that the number of bits is 8. The voltage range input is -8 to 7 volts. The range is thus 15V, and the resolution is 15/2^8 = 0.0586 volts. We will first add +8 to the input to convert it to a 0-15v signal. Then find the equivalent bit representation. For 7.8 volts, the binary signal will be all 1's, since the max input voltage for the ADC is 7 volts. For 4.95, we have 4.95+8 = 12.95 volts. Thus, N = 12.95/0.0586 = 221. The binary representation is 11011101. For -0.8, we have -0.8 + 8 = 7.2. Thus, N = 7.2/0.0586 = 123. The binary representation is 1111011.

Thus,

d[0] = 11111111

d[1] = 11011101

d[2] = 1111011

Find a negative feedback controller with at least two tunable gains that (1) results in zero steady state error when the input is a unit step (1/s). (and show why it works); (2) Gives a settling time of 4 seconds; (3) has 10% overshoot. Use the standard 2nd order approximation. Plot the step response of the system and compare the standard approximation with the plot.

Answers

Answer:

Gc(s) = [tex]\frac{0.1s + 0.28727}{s}[/tex]

Explanation:

comparing the standard approximation with the plot attached we can tune the PI gains so that the desired response is obtained. this is because the time requirement of the setting is met while the %OS requirement is not achieved instead a 12% OS is seen from the plot.

attached is the detailed solution and the plot in Matlab

Air at 100°F, 1 atm, and 10% relative humidity enters an evaporative cooler operating at steady state. The volumetric flow rate of the incoming air is 1765 ft3/min. Liquid water at 68°F enters the cooler and fully evaporates. Moist air exits the cooler at 70°F, 1 atm. There is no significant heat transfer between the device and its surroundings and kinetic and potential energy effects can be neglected. Determine the mass flow rate at which liquid enters, in lb(water)/min.

Answers

Answer:

Check the explanation

Explanation:

Kindly check the attached image below to see the step by step explanation to the question above.

Other Questions
KARLA has spent $33 on food. She bought milk, cheese, and meat. The milk cost half as much as the cheese and the meat cost four times as much as the cheese. Which equation will help you find the cost of the cheese? The simplified form of 3root45 - root 125 + root 500 PLEASE ANSWER THIS ASAP Which function is the result of vertically shrinking (x) = (x + 1)2 by a factor of 16?Question 6 options:A) (x) = (6x + 1)2B) (x) = (16x + 1)2C) (x) = 6(x + 1)2D) (x) = 16 (x + 1)2 A dance school offers 5 types of classes: jazz, tap, hip-hop, ballet, and lyrical. It conducts 950 classes over the course of ayear. If it conducts the same number of each type of class, how many jazz classes are given?19190475945 Please tell me the answer quick Analysis: The limiting reactant(s) appeared to bebecause Los mochilerosSi decides hacer un viaje por Espaa o Latinoamrica con un grupo de amigos, vas a encontrar a muchos jvenes de muchas nacionalidades haciendo turismotambin. Todos tienen el deseo de ver y conocer el mundo. Pero como no tienen mucho dinero, tienen que viajar de una manera econmica. T no tienes muchodinero tampoco? Pues, no hay problema. Como los otros aventureros, puedes poner todo lo que necesitas en una mochila grande y salir a ver el mundo.Vamos a hablar con un mochilero tpico. Se llama Antonio. Es de San Antonio.-Me encanta viajar y ver el mundo y lo hago sin mucho dinero. Como en restaurantes econmicos y a veces mis compaeros y yo vamos a un mercado dondecompramos comida para un picnic. Por lo general pasamos la noche en un albergue juvenil. Son muy econmicos pero sus facilidades son limitadas. No tienes baoprivado. Te levantas por la maana y a veces tienes que lavarte en agua fra porque no hay agua caliente. Pero a m no me importan estas pequeasinconveniencias. Lo importante es poder hacer nuevos amigos de todas partes del mundo y llegar a apreciar sus costumbres y manera de vivir. Qu te parece? Porqu no nos encontramos un da en Mxico o Chile?Multiple Choice: Choose the best answer.Un mochilero____.A. viaja con slo su mochila grande.B. hace turismo porque tiene mucho dinero.C. siempre se queda en los hoteles elegantes.D. both b and c. In these sentences, the speaker is appealing to What do mexicans refer the mexican american war as Write a program to read as many test scores as the user wants from the keyboard (assuming at most 50 scores). Print the scores in (1) original order, (2) sorted from high to low (3) the highest score, (4) the lowest score, and (5) the average of the scores. Implement the following functions using the given function prototypes: void displayArray(int array[], int size) - Displays the content of the array void selectionSort(int array[], int size) - sorts the array using the selection sort algorithm in descending order. Hint: refer to example 8-5 in the textbook. int findMax(int array[], int size) - finds and returns the highest element of the array int findMin(int array[], int size) - finds and returns the lowest element of the array double findAvg(int array[], int size) - finds and returns the average of the elements of the array I saw the dog...........out of the house.a. runb. is runningc. rand. was running. 123..4568910Which set of data does not contain any outliers?113, 115, 103, 154, 109, 111, 119141, 151, 111, 142, 149, 140, 15099, 103, 91, 104, 109, 107, 97131, 135, 131, 99, 138, 136, 140 i need help ASAP. you need to be good at fractions.fill in the missing numbers:2/3 = _/6 = 12/_ = _/21 Which type of graph would you use to show the number of pages in each book on the bookshelf? What kind of energy transformations occur when you hit a coconut with a hammer Cuando se puede utilizar la cita en una entrevista?? y = 5x 6Identify the y-intercept of thefollowing equation. viva la casa -1. What kind of injustices did the workers hope to undo by going on strike? How did these injusticesundermine their humanity? What does the underlined word mean in the following sentence?Je suis allrgique aux avocats.allergyallergic