def burgers_solution_test ( ): #*****************************************************************************80 # ## BURGERS_SOLUTION_TEST tests the BURGERS_SOLUTION library. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 27 September 2015 # # Author: # # John Burkardt # import platform from burgers_viscous_time_exact1 import burgers_viscous_time_exact1_test01 from burgers_viscous_time_exact1 import burgers_viscous_time_exact1_test02 from burgers_viscous_time_exact2 import burgers_viscous_time_exact2_test01 from burgers_viscous_time_exact2 import burgers_viscous_time_exact2_test02 print ( '' ) print ( 'BURGERS_SOLUTION_TEST:' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' BURGERS_SOLUTION evaluates exact solutions of the Burgers equation.' ) burgers_viscous_time_exact1_test01 ( ) burgers_viscous_time_exact1_test02 ( ) burgers_viscous_time_exact2_test01 ( ) burgers_viscous_time_exact2_test02 ( ) # # Terminate. # print ( '' ) print ( 'BURGERS_SOLUTION_TEST:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) burgers_solution_test ( ) timestamp ( )