예제 #1
0
        static void Main(string[] args)
        {
            Well well = new Well();

            try
            {
                well.InitTest();
            } catch (ArgumentException)
            {
                Console.WriteLine("Проблемы с составом тестового флюида");
            }
            Console.WriteLine("Q = " + well.Modeling(0.01));
            Console.ReadLine();
        }