[궁금계산] 세포 배양 세포수 자동계산기 (on-line Cell number calculator)

2023. 11. 4. 00:04카테고리 없음

반응형

 

Hemocytometer

 

 

세포 배양에서 빼 놓을 수 없는 과정이 바로 세포 수를 계산하는 것입니다.

전통적으로 사용하는 혈구계산기 (hemocytometer)를 이용하여 세포수를 계산한 후

세포수를 계산하는 간단한 계산기입니다.

 

 

화면에 뜨는 white Blank box에 아래와 같이 순서대로 입력하세요.
      
1. 첫번째 사분면의 셀 수를 입력하세요
   
2. 두번째 사분면의 셀 수를 입력하세요
   
3. 세번째 사분면의 셀 수를 입력하세요
   
4. 네번째 사분면의 셀 수를 입력하세요
 
5. 세포 현탁액의 총 부피(mL)를 입력하세요

하단 검은 화면에 세포 농도(세포수/mL)와 총 세포 수가 나타납니다.

       
만약 세포를 희석해서 세포를 카운트 했다면 희석한 배수를 고려해 곱해 주세요.
새로 고침하면 다시 작동합니다.

 

 

 

This calulator is optimized for PC environment. 
It may be slow, so please relax.

      Enter in the following order in the white blank box that appears on the screen.
    
1. Enter the number of cells in the first quadrant
    
2. Enter the number of cells in the second quadrant
     
3. Enter the number of cells in the third quadrant
     
4. Enter the number of cells in the fourth quadrant
     
5. Enter the total volume (mL) of cell suspension
    
The lower black screen shows the cell concentration (number of cells/mL) and the total number of cells.
  
If you count cells by diluting the cells, multiply by the dilution factor!

If I refresh the page it works again.
    

 

 

# Enter the cell numbers for each square a = int(input('Enter the number of cells in the first quadrant:')) b = int(input('Enter the number of cells in the second quadrant:')) c = int(input('Enter the number of cells in the third quadrant:')) d = int(input('Enter the number of cells in the fourth quadrant:')) # Enter the total cell volume (mL) in suspension e = float(input('Enter the total cell volume(mL) in suspension:')) # Calculate the average cell number average_cell_number=(a+b+c+d)/4 # Calculate the cell concentration cell_concentration=average_cell_number*10**4 # Calculate the total cells total_cells=cell_concentration*e # Print the results print(f'Cell concentration(cells/mL):{cell_concentration}') print(f'Total cells:{total_cells}')

 

반응형