1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
9966 [12]
3 years ago
10

Consider a 0.15-mm-diameter air bubble in a liquid. Determine the pressure difference between the inside and outside of the air

bubble if the surface tension at the air-liquid interface is a. 0.1 N/m. b. 0.12 N/m.
Engineering
1 answer:
777dan777 [17]3 years ago
4 0

Answer:

a)\Delta P= 2666.66 Pa

b)\Delta P= 3200 Pa

Explanation:

Given that

Diameter ,d= 0.15 mm

We know that pressure difference is given as

\Delta P=\dfrac{4\sigma }{d}

Now by putting the values

When surface tension 0.1 N/m  :

The surface tension ,\sigma=0.1\ N/m

\Delta P=\dfrac{4\times 0.1 }{0.15}\times 10^3\ Pa

\Delta P= 2666.66 Pa

When surface tension 0.12 N/m  :

The surface tension ,\sigma=0.12\ N/m

\Delta P=\dfrac{4\times 0.12 }{0.15}\times 10^3\ Pa

\Delta P= 3200 Pa

a)\Delta P= 2666.66 Pa

b)\Delta P= 3200 Pa

You might be interested in
An experiment to determine the convection coefficient associated with airflow over the surface of a thick stainless steel castin
Maksim231197 [3]

Answer:

h = 375 KW/m^2K

Explanation:

Given:

Thermo-couple distances: L_1 = 10 mm , L_2 = 20 mm

steel thermal conductivity k = 15 W / mK

Thermo-couple temperature measurements: T_1 = 50 C , T_2 = 40 C

Air Temp T_∞ = 100 C

Assuming there are no other energy sources, energy balance equation is:

                                               E_in = E_out

                                        q"_cond = q"_conv

Since, its a case 1-D steady state conduction, the total heat transfer rate can be found from Fourier's Law for surfaces 1 and 2

q"_cond = k * (T_1 - T_2) / (L_2 - L_1) = 15 * (50 - 40) / (0.02 - 0.01)

=15KW/m^2

Assuming SS is solid, temperature at the surface exposed to air will be 60 C since its gradient is linear in the case of conduction, and there are two temperatures given in the problem. Convection coefficient can be found from Newton's Law of cooling:

q"_conv = h * ( T_∞  - T_s ) ----> h = q"_conv / ( T_∞  - T_s )

                                                   h = 15000 W / (100 - 60 ) C = 375 KW/m^2K

4 0
2 years ago
2. There are three drawings that architects and designers use to indicate spaces. What are these drawing?
Zarrin [17]

Answer:

Architectural plans.

Explanation:

An architectural plan is called the drawings made by architects, civil engineers or designers of spaces or interiors, in which these professionals capture their building projects, organizing the distribution of the spaces to be used, the elements to be located in them and, fundamentally, to give construction planning a projection into reality. Thus, the plans help professionals to have a better understanding of the expected end result of the projects they are carrying out.

3 0
3 years ago
Write a program that prompts for a line of text and then transforms the text based on chosen actions. Actions include reversing
nlexa [21]

Answer:

public class TextConverterDemo

{

//Method definition of action1337

public static String action1337(String current)

{

//Replace each L or l with a 1 (numeral one)

 current = current.replace('L', '1');

 current = current.replace('l', '1');

 

 //Replace each E or e with a 3 (numeral three)

 current = current.replace('E', '3');

 current = current.replace('e', '3');

 //Replace each T or t with a 7 (numeral seven)

 current = current.replace('T', '7');

 current = current.replace('t', '7');

 //Replace each O or o with a 0 (numeral zero)

 current = current.replace('O', '0');

 current = current.replace('o', '0');

 

//Replace each S or s with a $ (dollar sign)

 current = current.replace('S', '$');

 current = current.replace('s', '$');

 return current;

}

//Method definition of actionReverse

//This method is used to reverses the order of

//characters in the current string

public static String actionReverse(String current)

{

 //Create a StringBuilder's object

 StringBuilder originalStr = new StringBuilder();

 //Append the original string to the StribgBuilder's object

 originalStr.append(current);

 //Use reverse method to reverse the original string

 originalStr = originalStr.reverse();

 

 //return the string in reversed order

 return originalStr.toString();

}

//Method definition of main

public static void main(String[] args)

{

    //Declare variables

 String input, action;

 

 //Prompt the input message

 System.out.println("Welcome to the Text Converter.");

 System.out.println("Available Actions:");

 System.out.println("\t1337) convert to 1337-speak");

 System.out.println("\trev) reverse the string");

 System.out.print("Please enter a string: ");

   

 //Create a Scanner class's object

 Scanner scn = new Scanner(System.in);

 

 //Read input from the user

 input = scn.nextLine();

 do

 {

  /*Based on the action the user chooses, call the appropriate

   * action method. If an unrecognized action is entered then

   * the message "Unrecognized action." should be shown on a

   * line by itself and then the user is prompted again just

   * as they were when an action was performed.

   * */

  System.out.print("Action (1337, rev, quit): ");

  action = scn.nextLine();

  if (action.equals("1337"))

  {

   input = action1337(input);

   System.out.println(input);

  } else if (action.equals("rev"))

  {

   input = actionReverse(input);

   System.out.println(input);

  } else if (!action.equals("quit"))

  {

   System.out.println("Unrecognized action.");

  }

 } while (!action.equals("quit"));

 System.out.println("See you next time!");

 scn.close();

}

}

7 0
3 years ago
What does this map show about the Viking civilization?
BlackZzzverrR [31]

Answer:

the answer is c

Explanation:

8 0
3 years ago
Read 2 more answers
Fibonacci sequence has many applications in Computer Science. Write a program to generate Fibonacci numbers as many as desired.
VikaD [51]

Answer:

The Python Code for Fibonacci Sequence is :

# Function for nth Fibonacci number  

def Fibonacci(n):  

if n<0:  

 print("Incorrect input")  

# First Fibonacci number is 0  

elif n==0:  

 return 0

# Second Fibonacci number is 1  

elif n==1:  

 return 1

else:  

 return Fibonacci(n-1)+Fibonacci(n-2)  

# Driver Program  

print(Fibonacci(9))  

Explanation:

The Fibonacci numbers are the numbers in the following integer sequence.

0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..

In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation

Fn = Fn-1 + Fn-2

with seed values

F0 = 0 and F1 = 1.

8 0
3 years ago
Read 2 more answers
Other questions:
  • What are the advantages of using 3D ink jet printing?
    10·1 answer
  • The structure supports a distributed load of w. The limiting stress in rod (1) is 370 MPa, and the limiting stress in each pin i
    5·1 answer
  • A roller-coaster car is traveling at a speed of 23 m/s when it passes through point B. At that point, it enters a concave down c
    8·1 answer
  • What are the four basic parts of process plan
    11·1 answer
  • 13. Write a function which is passed two strings. The function creates a new string from the two original strings by copying one
    13·1 answer
  • Which of the following machine parts always require
    12·1 answer
  • An ideal Diesel Cycle has a compression ratio of 18 and a cutoff ratio of 1.5. Determine the maximum air temperature and the rat
    14·1 answer
  • How does energy transition from one form to another as water moves from behind a dam to downstream of a dam?.
    8·1 answer
  • If a 110-volt appliance requires 20 amps, what is the total power consumed?
    8·2 answers
  • Read the passage.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!