Defines a dong outflow condition.  
 | 
| type   | dong_outflow_t | 
|   | Dong outflow condition Follows "A Convective-like Energy-Stable Open Boundary Condition for
 Simulations of Incompressible Flows" by S. Dong.  More...
  | 
|   | 
 | 
| subroutine  | dong_outflow_init (this, coef, json) | 
|   | Constructor.  
  | 
|   | 
| subroutine  | dong_outflow_apply_scalar (this, x, n, time, strong) | 
|   | Boundary condition apply for a generic Dirichlet condition to a vector x.  
  | 
|   | 
| subroutine  | dong_outflow_apply_vector (this, x, y, z, n, time, strong) | 
|   | Boundary condition apply for a generic Dirichlet condition to vectors x, y and z.  
  | 
|   | 
| subroutine  | dong_outflow_apply_scalar_dev (this, x_d, time, strong, strm) | 
|   | Boundary condition apply for a generic Dirichlet condition to a vector x (device version)  
  | 
|   | 
| subroutine  | dong_outflow_apply_vector_dev (this, x_d, y_d, z_d, time, strong, strm) | 
|   | Boundary condition apply for a generic Dirichlet condition to vectors x, y and z (device version)  
  | 
|   | 
| subroutine  | dong_outflow_free (this) | 
|   | Destructor.  
  | 
|   | 
| subroutine  | dong_outflow_finalize (this, only_facets) | 
|   | Finalize.  
  | 
|   | 
◆ dong_outflow_apply_scalar()
  
  
      
        
          | subroutine dong_outflow::dong_outflow_apply_scalar  | 
          ( | 
          class(dong_outflow_t), intent(inout)  | 
          this,  | 
         
        
           | 
           | 
          real(kind=rp), dimension(n), intent(inout)  | 
          x,  | 
         
        
           | 
           | 
          integer, intent(in)  | 
          n,  | 
         
        
           | 
           | 
          type(time_state_t), intent(in), optional  | 
          time,  | 
         
        
           | 
           | 
          logical, intent(in), optional  | 
          strong  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
private   | 
  
 
 
◆ dong_outflow_apply_scalar_dev()
  
  
      
        
          | subroutine dong_outflow::dong_outflow_apply_scalar_dev  | 
          ( | 
          class(dong_outflow_t), intent(inout), target  | 
          this,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          x_d,  | 
         
        
           | 
           | 
          type(time_state_t), intent(in), optional  | 
          time,  | 
         
        
           | 
           | 
          logical, intent(in), optional  | 
          strong,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          strm  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
private   | 
  
 
 
◆ dong_outflow_apply_vector()
  
  
      
        
          | subroutine dong_outflow::dong_outflow_apply_vector  | 
          ( | 
          class(dong_outflow_t), intent(inout)  | 
          this,  | 
         
        
           | 
           | 
          real(kind=rp), dimension(n), intent(inout)  | 
          x,  | 
         
        
           | 
           | 
          real(kind=rp), dimension(n), intent(inout)  | 
          y,  | 
         
        
           | 
           | 
          real(kind=rp), dimension(n), intent(inout)  | 
          z,  | 
         
        
           | 
           | 
          integer, intent(in)  | 
          n,  | 
         
        
           | 
           | 
          type(time_state_t), intent(in), optional  | 
          time,  | 
         
        
           | 
           | 
          logical, intent(in), optional  | 
          strong  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
private   | 
  
 
 
◆ dong_outflow_apply_vector_dev()
  
  
      
        
          | subroutine dong_outflow::dong_outflow_apply_vector_dev  | 
          ( | 
          class(dong_outflow_t), intent(inout), target  | 
          this,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          x_d,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          y_d,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          z_d,  | 
         
        
           | 
           | 
          type(time_state_t), intent(in), optional  | 
          time,  | 
         
        
           | 
           | 
          logical, intent(in), optional  | 
          strong,  | 
         
        
           | 
           | 
          type(c_ptr), intent(inout)  | 
          strm  | 
         
        
           | 
          ) | 
           |  | 
         
       
   | 
  
private   | 
  
 
 
◆ dong_outflow_finalize()
◆ dong_outflow_free()
◆ dong_outflow_init()
- Parameters
 - 
  
    | [in] | coef | The SEM coefficients.  | 
    | [in,out] | json | The JSON object configuring the boundary condition.  | 
  
   
Definition at line 85 of file dong_outflow.f90.