Sunday 04/21/13

4:00 P – 7:00 P

Updates on project 2

  • see notes
  • Fixed cost calculations (previously off for first two models. Calculation error source uncertain, clearly violates back of envelope estimate though).

Revising Tx Review

  • responding to excellent feedback from Peter
  • checking a few things:

Quick check on convergence to Hill equation


A = logspace(-6,3,100);
K1 = 1/10; % inverse eq coefficients
K2 = 1/10;

H = A.^2./(K1K2 + K2A + A.^2);
H2 = A.^2./(K1*K2 + A.^2);

figure(2); clf; plot(log10(A),H,'r--',log10(A),H2,'g');

A = logspace(-6,3,100);
K1 = 1/10; % inverse eq coefficients
K2 = 1/1000;

H = A.^2./(K1K2 + K2A + A.^2);
H2 = A.^2./(K1*K2 + A.^2);

figure(3); clf; plot(log10(A),H,'r--',log10(A),H2,'g');

This entry was posted in Summaries. Bookmark the permalink.