Questions
14.7 Batch and continuous biomass production Pseudomonas methylotrophus is used to produce single cell protein from...

14.7 Batch and continuous biomass production Pseudomonas methylotrophus is used to produce single cell protein from methanol in a 1000-m3 pressure-cycle airlift fermenter. The biomass yield from substrate is 0.41 g/g, KS is 0.7 mg/l, and the maximum specific growth rate is 0.44 1/h. The medium contains 4% (w/v) methanol. A substrate conversion of 98% is desirable. The reactor may be operated in either batch or continuous mode. If operated in batch, an inoculum of 0.01% (w/v) is used and the downtime between batches is 20 h. If continuous operations are used at steady state, a downtime of 25 days is expected per year. Neglecting maintenance requirements, compare the annual biomass production achieved using batch and continuous reactors.

In: Other

The Baroque period gave rise to 2 new large scale vocal genres which many consider to...

The Baroque period gave rise to 2 new large scale vocal genres which many consider to be polar reflections of each other: Opera (based on a mythological or historical story) and Oratorio (based on a sacred story or scripture text). We will be discussing these at the beginning of class on Thursday and I'll want you to weigh in on the similarities and differences of each genre.

Watch these excerpts and try to determine what kinds of things the two genres have in common and what things are different. Consider setting, topic, musical aspects such as texture, instrumentation, and voice types as well as other performing considerations such as acting, costumes, dancing, use of musical scores or not, performance locations, etc...

Opera Ensemble or Chorus

https://www.youtube.com/watch?v=Tf16_lGs7Ss

Oratorio Ensemble or Chorus

https://www.youtube.com/watch?v=IUZEtVbJT5c

In: Psychology

A proton starts on a plate with potential of 5.0 x 10^3 V at y=0m. It...

A proton starts on a plate with potential of 5.0 x 10^3 V at y=0m. It then enters a region in which there is magnetic field of 2.0 T pointing out of the page. In a field it travels a semicircular path.

a) what is the radius of the semicircle

b)where (what value of y) doed the proton leave the magnetic field?

c) the proton now passes between a second set of plates with a potential difference of 5 x 10^3 V. What is its velocity after passing through these plates?

d) The proton now enters another region in which there is a magnetic field of 2.0 T pointing out of the page, and it again describes a semicircular path. What is the radius of the semicircle

e) where (what value of y) does the proton emerge from the field now?

In: Physics

A parallel plate capacitor with plate separation d is connected to a battery. The capacitor is...

A parallel plate capacitor with plate separation d is connected to a battery. The capacitor is fully charged to Q Coulombs and a voltage of V. (C is the capacitance and U is the stored energy.) Answer the following questions regarding the capacitor charged by a battery. For each statement below, select True or False.

With the capacitor connected to the battery, increasing d decreases Q.
After being disconnected from the battery, inserting a dielectric with κ will increase V.
After being disconnected from the battery, inserting a dielectric with κ will increase C.
With the capacitor connected to the battery, inserting a dielectric with κ will decrease U.
With the capacitor connected to the battery, increasing d increases U.
After being disconnected from the battery, decreasing d increases C.

answers that have been wrong: FTTFTT, FFTFTT, TFTFTT, TFTFTF

In: Physics

The C function funsum below takes three arguments -- an integer val and two function pointers...

The C function funsum below takes three arguments -- an integer val and two function pointers to functions f and g, respectively. f and g both take an integer argument and return an integer result. The function funsum applies f to val, applies g to val, and returns the sum of the two results. Translate to RISC-V following RISC-V register conventions. Note that you do not know, nor do you need to know, what f and g do, nor do you know what registers f and g use.

long long int funsum(long long int val, long long int (*f) (long long int), long long int (*g) (long long int))

{

return(f(val) + g(val));

}

In: Computer Science

Using the provided dictionary, develop an encryption algorithm that will convert a user-entered string into an...

Using the provided dictionary, develop an encryption algorithm that will convert a user-entered string into an encrypted string. Print the user inputted text and the corresponding encrypted text.

cipher = {"A": "T", "B": "D", "C": "L","D": "O", "E": "F","F": "A", \ "G": "G","H": "J", "I": "K", "J": "R", "K": "I","L": "C", "M": "V", \ "N": "P", "O": "W","P": "U", "Q": "X", "R": "Y", "S": "B","T": "E", \ "U": "Z", "V": "Q", "W": "S","X": "N", "Y": "M", "Z": "H"}

b) Create a corresponding decryption algorithm that utilizes the same dictionary. Print the user inputted encryption text and the corresponding decrypted text.

could I recieve help on this python problem thanks!

In: Computer Science

The C function funsum below takes three arguments -- an integer val and two function pointers...

The C function funsum below takes three arguments -- an integer val and two function pointers to functions f and g, respectively. f and g both take an integer argument and return an integer result. The function funsum applies f to val, applies g to val, and returns the sum of the two results. Translate to RISC-V following RISC-V register conventions. Note that you do not know, nor do you need to know, what f and g do, nor do you know what registers f and g use.

long long int funsum(long long int val, long long int (*f) (long long int), long long int (*g) (long long int))

{

return(f(val) + g(val));

}

In: Computer Science

The coordinates of an object moving in the xy plane vary with time according to the...

The coordinates of an object moving in the xy plane vary with time according to the equations x = −5.08 sin ωt and y = 4.00 − 5.08 cos ωt, where ω is a constant, x and y are in meters, and t is in seconds.

(a) Determine the components of velocity of the object at t = 0. (Use the following as necessary: ω.) v with arrow = m/s

(b) Determine the components of the acceleration of the object at t = 0. (Use the following as necessary: ω.) a with arrow = m/s2

(c) Write expressions for the position vector, the velocity vector, and the acceleration vector of the object at any time t > 0. (Use the following as necessary: omega for ω and t.) r with arrow = m v with arrow = m/s a with arrow = m/s2

(d) Describe the path of the object in an xy plot.

In: Physics

Usually, Djikstra’s shortest-path algorithm is not used on graphs with negative-weight edges because it may fail...

Usually, Djikstra’s shortest-path algorithm is not used on graphs with negative-weight edges because it may fail and give us an incorrect answer. However, sometimes Djikstra’s will give us the correct answer even if the graph has negative edges.
You are given graph G with at least one negative edge, and a source s. Write an algorithm that tests whether Djikstra’s algorithm will give the correct shortest paths from s. If it does, return the shortest paths. If not, return ‘no.’ The time complexity should not be longer than that of Djiksta’s algorithm itself, which is Θ(|E| + |V | log |V |).
(Hint: First, use Djikstra’s algorithm to come up with candidate paths. Then, write an algorithm to verify whether they are in fact the shortest paths from s.)

In: Computer Science

A parallel plate capacitor with plate separation d is connected to a battery. The capacitor is...

A parallel plate capacitor with plate separation d is connected to a battery. The capacitor is fully charged to Q Coulombs and a voltage of V. (C is the capacitance and U is the stored energy.) Answer the following questions regarding the capacitor charged by a battery.

For each statement below, select True or False.

1. With the capacitor connected to the battery, increasing d increases U.

2. After being disconnected from the battery, inserting a dielectric with κ will decrease V.

3. With the capacitor connected to the battery, decreasing d decreases Q.

4. After being disconnected from the battery, inserting a dielectric with κ will increase U.

5. After being disconnected from the battery, inserting a dielectric with κ will decrease C.

6. After being disconnected from the battery, decreasing d increases C.

In: Physics