Implements the fluid_source_term_t type.  
 | 
| subroutine  | fluid_source_term_init (this, f_x, f_y, f_z, coef, user, scheme_name) | 
|   | Constructor.  
  | 
|   | 
| subroutine  | fluid_init_user_source (source_term, rhs_fields, coef, user, scheme_name) | 
|   | Initialize the user source term.  
  | 
|   | 
◆ fluid_init_user_source()
- Parameters
 - 
  
    | source_term | The allocatable source term to be initialized to a user.  | 
    | rhs_fields | The field list with the 3 right-hand-side components.  | 
    | coef | The SEM coefs.  | 
    | user | The user type containing the user source term routines.  | 
    | scheme_name | The name of the fluid scheme that owns this source term.  | 
  
   
Definition at line 88 of file fluid_source_term.f90.
 
 
◆ fluid_source_term_init()
      
        
          | subroutine fluid_source_term::fluid_source_term_init  | 
          ( | 
          class(fluid_source_term_t), intent(inout)  | 
          this,  | 
        
        
           | 
           | 
          type(field_t), intent(in), pointer  | 
          f_x,  | 
        
        
           | 
           | 
          type(field_t), intent(in), pointer  | 
          f_y,  | 
        
        
           | 
           | 
          type(field_t), intent(in), pointer  | 
          f_z,  | 
        
        
           | 
           | 
          type(coef_t), intent(in), target  | 
          coef,  | 
        
        
           | 
           | 
          type(user_t), intent(in), target  | 
          user,  | 
        
        
           | 
           | 
          character(len=*), intent(in)  | 
          scheme_name  | 
        
        
           | 
          ) | 
           |  |