Skip to content
Snippets Groups Projects
  • René Heß's avatar
    75c89208
    Ignore indices when splitting into accumulation terms · 75c89208
    René Heß authored
    Example: Before this commit the expression
    
    \sum_i a_i (\nabla v)_i + \sum_j b_j (\nabla v)_j
    
    was split into two accumulation terms:
    
    1) a_k with corresponding test function (\nabla v)_k
    2) b_l with corresponding test function (\nabla v)_l
    
    Now we split into:
    
    a_k + b_k with corresponding test function (\nabla v)_k
    
    This is possible since we have linearity in the test function.
    
    TODO: Jacobians are not yet working
    75c89208
    History
    Ignore indices when splitting into accumulation terms
    René Heß authored
    Example: Before this commit the expression
    
    \sum_i a_i (\nabla v)_i + \sum_j b_j (\nabla v)_j
    
    was split into two accumulation terms:
    
    1) a_k with corresponding test function (\nabla v)_k
    2) b_l with corresponding test function (\nabla v)_l
    
    Now we split into:
    
    a_k + b_k with corresponding test function (\nabla v)_k
    
    This is possible since we have linearity in the test function.
    
    TODO: Jacobians are not yet working