\( x = a \times b \) or \( a = a \times b \)  
 More...
|  | 
| subroutine | cell_operation_outline_mult (a, b, x) | 
|  | \( x = a \times b \) 
 | 
|  | 
| subroutine | cell_operation_inline_mult (a, b) | 
|  | \( a = a \times b \) 
 | 
|  | 
| subroutine | cell_operation_outline_smult (a, b, x) | 
|  | \( x = a \times b \) 
 | 
|  | 
| subroutine | cell_operation_inline_smult (a, b) | 
|  | \( b = a \times b \) 
 | 
|  | 
| subroutine | face_operation_outline_mult (a, b, x) | 
|  | \( X = A \times B \) 
 | 
|  | 
| subroutine | face_operation_inline_mult (a, b) | 
|  | \( A = A \times B \) 
 | 
|  | 
| subroutine | face_operation_outline_smult (a, b, x) | 
|  | \( X = a \times B \) 
 | 
|  | 
| subroutine | face_operation_inline_smult (a, b) | 
|  | \( B = a \times B \) 
 | 
|  | 
| subroutine | face_operation_outline_mults (a, b, x) | 
|  | \( X = A \times b \) 
 | 
|  | 
| subroutine | face_operation_inline_mults (a, b) | 
|  | \( A = A \times b \) 
 | 
|  | 
\( x = a \times b \) or \( a = a \times b \) 
◆ cell_operation_inline_mult()
      
        
          | subroutine mod_field_operation::field_operation_mult::cell_operation_inline_mult | ( | double precision, dimension(:,:,:), intent(inout) | a, | 
        
          |  |  | double precision, dimension(:,:,:), intent(in) | b ) | 
      
 
\( a = a \times b \) 
- Parameters
- 
  
    | [in,out] | a | input and resulting array |  | [in] | b | second array |  
 
 
 
◆ cell_operation_inline_smult()
      
        
          | subroutine mod_field_operation::field_operation_mult::cell_operation_inline_smult | ( | double precision, intent(in) | a, | 
        
          |  |  | double precision, dimension(:,:,:), intent(inout) | b ) | 
      
 
\( b = a \times b \) 
- Parameters
- 
  
    | [in,out] | a | scalar |  | [in] | b | input and resulting array |  
 
 
 
◆ cell_operation_outline_mult()
      
        
          | subroutine mod_field_operation::field_operation_mult::cell_operation_outline_mult | ( | double precision, dimension(:,:,:), intent(in) | a, | 
        
          |  |  | double precision, dimension(:,:,:), intent(in) | b, | 
        
          |  |  | double precision, dimension(:,:,:), intent(inout) | x ) | 
      
 
\( x = a \times b \) 
- Parameters
- 
  
    | [in,out] | x | resulting array |  | [in] | a | first array |  | [in] | b | second array |  
 
 
 
◆ cell_operation_outline_smult()
      
        
          | subroutine mod_field_operation::field_operation_mult::cell_operation_outline_smult | ( | double precision, intent(in) | a, | 
        
          |  |  | double precision, dimension(:,:,:), intent(in) | b, | 
        
          |  |  | double precision, dimension(:,:,:), intent(inout) | x ) | 
      
 
\( x = a \times b \) 
- Parameters
- 
  
    | [in,out] | x | resulting array |  | [in] | a | scalar |  | [in] | b | second array |  
 
 
 
◆ face_operation_inline_mult()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_inline_mult | ( | type(t_face_field), intent(inout) | a, | 
        
          |  |  | type(t_face_field), intent(in) | b ) | 
      
 
\( A = A \times B \) 
- Parameters
- 
  
    | [in] | a | first input and resulting face field |  | [in] | b | the second input face field |  
 
 
 
◆ face_operation_inline_mults()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_inline_mults | ( | type(t_face_field), intent(inout) | a, | 
        
          |  |  | double precision, intent(in) | b ) | 
      
 
\( A = A \times b \) 
- Parameters
- 
  
    | [in,out] | a | the input and resulting face field |  | [in] | b | scalar |  
 
 
 
◆ face_operation_inline_smult()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_inline_smult | ( | double precision, intent(in) | a, | 
        
          |  |  | type(t_face_field), intent(inout) | b ) | 
      
 
\( B = a \times B \) 
- Parameters
- 
  
    | [in] | a | scalar |  | [in] | b | the input and resulting face field |  
 
 
 
◆ face_operation_outline_mult()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_outline_mult | ( | type(t_face_field), intent(in) | a, | 
        
          |  |  | type(t_face_field), intent(in) | b, | 
        
          |  |  | type(t_face_field), intent(inout) | x ) | 
      
 
\( X = A \times B \) 
- Parameters
- 
  
    | [in,out] | x | the resulting face field |  | [in] | a | the first input face field |  | [in] | b | the second input face field |  
 
 
 
◆ face_operation_outline_mults()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_outline_mults | ( | type(t_face_field), intent(in) | a, | 
        
          |  |  | double precision, intent(in) | b, | 
        
          |  |  | type(t_face_field), intent(inout) | x ) | 
      
 
\( X = A \times b \) 
- Parameters
- 
  
    | [in,out] | x | the resulting face field |  | [in] | a | input face field |  | [in] | b | scalar input |  
 
 
 
◆ face_operation_outline_smult()
      
        
          | subroutine mod_field_operation::field_operation_mult::face_operation_outline_smult | ( | double precision, intent(in) | a, | 
        
          |  |  | type(t_face_field), intent(in) | b, | 
        
          |  |  | type(t_face_field), intent(inout) | x ) | 
      
 
\( X = a \times B \) 
- Parameters
- 
  
    | [in,out] | x | the resulting face field |  | [in] | a | scalar input |  | [in] | b | input face field |  
 
 
 
The documentation for this interface was generated from the following file:
- src/lib/core/openmp/field_operation_openmp.f90