Concentration of PbNO3

Calculus Level pending

Question: A tank contains 65 L of a solution composed of 80% of water and 20% of PbNO3. A second solution containing 25% of water and 75% of PbNO3 is added to the tank at the rate of 2L/hr. The volume of solution is constant since the tank is draining at the same rate.

Answer Submission: What is the amount of PbNO3, in volume, in the solution after 3 hrs? Round your answer to the nearest integer.


The answer is 16.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

1 solution

Steven Chase
May 3, 2020

Here is a time simulation of the inflow and outflow. The inflow has a fixed composition, and the outflow has the composition from the tank at that time. We expect the water fraction to begin at 0.8 0.8 and asymptotically approach 0.25 0.25 over time. It takes about 200 200 hours to reach a steady state.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
import math

Vw = 65.0*0.8   # initial water volume
Vp = 65.0*0.2   # initial PbNO3 volume

dt = 10.0**(-5.0)  # time step in hours

t = 0.0
count = 0

while t <= 200.0:            

    fracw = Vw/(Vw+Vp)     # fraction of tank that is water

    dV = 2.0*dt            # infinitesimal volume = flow rate * time step

    Vw = Vw - dV*fracw        # outflow has composition of tank
    Vp = Vp - dV*(1.0-fracw)

    Vw = Vw + dV*0.25          # inflow has fixed composition
    Vp = Vp + dV*0.75

    t = t + dt
    count = count + 1

    if count % 10000 == 0:
        print t,fracw,Vp

@Steven Chase Solve it anaylitically . Please

A Former Brilliant Member - 1 year, 1 month ago

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...