QuazarTech / DG_Maxwell

Solution of Maxwell equations using Discontinuous Galerkin method.
GNU General Public License v3.0
9 stars 5 forks source link

Second order time-stepping algorithm implementation [WIP] #29

Closed Balavarun5 closed 7 years ago

Balavarun5 commented 7 years ago

Using a second order time-stepping method to evolve the wave.

amanabt commented 7 years ago

@Balavarun5 As far as I remember, we decided not to use global variables in the code and, we also decided to remove the file global_variables.py. But, in this PR, the global_variables.py file has been renamed as params.py and we are still using global variables. Have you and @mchandra decided to use global variables for now, or this will be continued in future too?

I need to know this to decide whether to use global variables for developing the 2D wave equation, or not.

mchandra commented 7 years ago

Having a params.py to let the user input parameters such as grid resolution etc is fine, but the current state of params.py is far from desirable. It contains too much solver code.

Balavarun5 commented 7 years ago

The second order time-stepping has been implemented in PR #32