21 lines
386 B
C#
21 lines
386 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 GLUT3 : GLUT1
|
|
{
|
|
public GLUT3()
|
|
{
|
|
Km = 1.0;
|
|
Vmax = 0.8;
|
|
|
|
KmRange = new(0.3, 1.0);
|
|
VmaxRange = new(0.5, 20.0);
|
|
}
|
|
}
|
|
}
|