fine_to_coarse interpolation #3314
-
During develop my own CFD code based on AMReX, I want to transfer the data on the fine level to the coarse level with biquadratic Thanks in advance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You can implement what you need following the example of average_down functions. Those average_down functions are usually sufficient for many AMReX application codes because for finite-volume methods the states are cell averaged values (even for high-order say 4th-order), and for finite-difference methods we can put the states on nodes instead of cell centers. |
Beta Was this translation helpful? Give feedback.
You can implement what you need following the example of average_down functions.
Those average_down functions are usually sufficient for many AMReX application codes because for finite-volume methods the states are cell averaged values (even for high-order say 4th-order), and for finite-difference methods we can put the states on nodes instead of cell centers.