22 lines
414 B
C#
22 lines
414 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace BaseCellSimulation.Enzyms.Membrane.GLUT
|
|
{
|
|
public class GLUT2 : GLUT1
|
|
{
|
|
public GLUT2()
|
|
{
|
|
Km = 17.0; // Example Km value in mM
|
|
Vmax = 1.2;
|
|
|
|
KmRange = new(15.0, 20.0);
|
|
VmaxRange = new(1.0, 50.0);
|
|
}
|
|
|
|
}
|
|
}
|