Exemplo n.º 1
0
        /***************************************************/

        public static double TimeConstant(this RT60 revTime)
        {
            if (revTime == null)
            {
                BH.Engine.Reflection.Compute.RecordError("Cannot query the time constant for a null rev time.");
                return(0);
            }

            return(revTime.Value / Constants.SabineConstant);
        }
Exemplo n.º 2
0
        /***************************************************/

        public static double TimeConstant(this RT60 revTime)
        {
            return(revTime.Value / Constants.SabineConstant);
        }