#! /usr/bin/env python # def uvp_vortex ( nu, rho, n, x, y, t ): #*****************************************************************************80 # ## UVP_VORTEX evaluates the Vortex solution. # # Location: # # http://people.sc.fsu.edu/~jburkardt/py_src/navier_stokes_2d_exact/uvp_vortex.py # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 24 July 2015 # # Author: # # John Burkardt # # Parameters: # # Input, real NU, the kinematic viscosity. # # Input, real RHO, the density. # # Input, integer N, the number of points at which the solution is to # be evaluated. # # Input, real X(N), Y(N), the coordinates of the points. # # Input, real T or T(N), the time coordinate or coordinates. # # Output, real U(N), V(N), P(N), the velocity components and # pressure at each of the points. # import numpy as np cx = np.cos ( np.pi * x ) cy = np.cos ( np.pi * y ) c2x = np.cos ( 2.0 * np.pi * x ) c2y = np.cos ( 2.0 * np.pi * y ) sx = np.sin ( np.pi * x ) sy = np.sin ( np.pi * y ) u = np.zeros ( n ) v = np.zeros ( n ) p = np.zeros ( n ) u = - cx * sy v = sx * cy p = - 0.25 * rho * ( c2x + c2y ) return u, v, p def uvp_vortex_test ( ): #*****************************************************************************80 # ## UVP_TAYLOR_TEST samples the Vortex solution at the initial time. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 24 July 2015 # # Author: # # John Burkardt # import numpy as np import platform from r8vec_uniform_ab import r8vec_uniform_ab nu = 1.0 rho = 1.0 print ( '' ) print ( 'UVP_VORTEX_TEST' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Sample the Vortex solution.' ) print ( ' Estimate the range of velocity and pressure' ) print ( ' at the initial time T = 0, using a region that is' ) print ( ' the square centered at (1.5,1.5) with "radius" 1.0,' ) print ( ' Kinematic viscosity NU = %g' % ( nu ) ) print ( ' Fluid density RHO = %g' % ( rho ) ) n = 1000 x_lo = 0.5 x_hi = +2.5 seed = 123456789 x, seed = r8vec_uniform_ab ( n, x_lo, x_hi, seed ) y, seed = r8vec_uniform_ab ( n, x_lo, x_hi, seed ) t = 0.0 u, v, p = uvp_vortex ( nu, rho, n, x, y, t ) print ( '' ) print ( ' Minimum Maximum' ) print ( '' ) print ( ' U: %14.6g %14.6g' % ( np.min ( u ), np.max ( u ) ) ) print ( ' V: %14.6g %14.6g' % ( np.min ( v ), np.max ( v ) ) ) print ( ' P: %14.6g %14.6g' % ( np.min ( p ), np.max ( p ) ) ) # # Terminate. # print ( '' ) print ( 'UVP_VORTEX_TEST:' ) print ( ' Normal end of execution.' ) return def uvp_vortex_test2 ( ): #*****************************************************************************80 # ## UVP_VORTEX_TEST2 samples the Vortex solution on the boundary. # # Licensing: # # This code is distributed under the GNU LGPL license. # # Modified: # # 07 March 2015 # # Author: # # John Burkardt # import numpy as np import platform r8_lo = 0.5 r8_hi = +2.5 nu = 1.0 rho = 1.0 t = 0.0 print ( '' ) print ( 'UVP_VORTEX_TEST2' ) print ( ' Python version: %s' % ( platform.python_version ( ) ) ) print ( ' Sample the Vortex solution.' ) print ( ' Estimate the range of velocity and pressure' ) print ( ' on the boundary' ) print ( ' at the initial time T = 0, using a region that is' ) print ( ' the square centered at (1.5,1.5) with "radius" 1.0,' ) print ( ' Kinematic viscosity NU = %g' % ( nu ) ) print ( ' Fluid density RHO = %g' % ( rho ) ) n = 400 x = np.zeros ( n ) y = np.zeros ( n ) # # Python is consistent in its willful flouting of sensible conventions. # X[0:100] means X from 0 to 99...! # x[0:100] = np.linspace ( r8_lo, r8_hi, 100 ) y[0:100] = r8_lo x[100:200] = r8_hi y[100:200] = np.linspace ( r8_lo, r8_hi, 100 ) x[200:300] = np.linspace ( r8_hi, r8_lo, 100 ) y[200:300] = r8_hi x[300:400] = r8_lo y[300:400] = np.linspace ( r8_lo, r8_hi, 100 ) u, v, p = uvp_vortex ( nu, rho, n, x, y, t ) print ( '' ) print ( ' Minimum Maximum' ) print ( '' ) print ( ' U: %14.6g %14.6g' % ( np.min ( u ), np.max ( u ) ) ) print ( ' V: %14.6g %14.6g' % ( np.min ( v ), np.max ( v ) ) ) print ( ' P: %14.6g %14.6g' % ( np.min ( p ), np.max ( p ) ) ) # # Terminate. # print ( '' ) print ( 'UVP_VORTEX_TEST2:' ) print ( ' Normal end of execution.' ) return if ( __name__ == '__main__' ): from timestamp import timestamp timestamp ( ) uvp_vortex_test ( ) uvp_vortex_test2 ( ) timestamp ( )