001        package com.croftsoft.core.ai.neuro;
002    
003        /***********************************************************************
004        * Channel interface.
005        * 
006        * @version
007        *   $Id: Channel.java,v 1.3 2008/07/19 21:06:40 croft Exp $
008        * @since
009        *   2008-07-06
010        * @author
011        *   <a href="https://www.croftsoft.com/">David Wallace Croft</a>
012        ***********************************************************************/
013    
014        public interface  Channel
015        ////////////////////////////////////////////////////////////////////////
016        ////////////////////////////////////////////////////////////////////////
017        {
018          
019        double   getConductance ( );
020        
021        boolean  isOpen ( );
022        
023        double   getReversalPotential ( );
024          
025        ////////////////////////////////////////////////////////////////////////
026        ////////////////////////////////////////////////////////////////////////
027        }