A chemical plant releases an amount A of pollutant into a stream. The maximum concentration C of the pollutant at a point which is a distance x from the plant is:
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:34.1
All Answers
total answers (1)
>> A = 30000; >> x = 100; >> C = A/x * sqrt(2/(pi*exp(1))) C = 145.18 >> x = 1000; >> C = A/x * sqrt(2/(pi*exp(1))) C = 14.52 >> x = 20000; >> C = A/x * sqrt(2/(pi*exp(1))) C = 0.73
need an explanation for this answer? contact us directly to get an explanation for this answer