Skip to content
Snippets Groups Projects
cavities.py 5.03 KiB
Newer Older
__copyright__ = """
Copyright (C) 2015 Andreas Kloeckner
Copyright (C) 2021 University of Illinois Board of Trustees
"""
Bogdan Enache's avatar
Bogdan Enache committed
__license__ = """
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
Bogdan Enache's avatar
Bogdan Enache committed
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
Bogdan Enache's avatar
Bogdan Enache committed
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
import logging

Bogdan Enache's avatar
Bogdan Enache committed
import numpy as np
Bogdan Enache's avatar
Bogdan Enache committed
import pyopencl as cl
import pyopencl.tools as cl_tools
from grudge import op
from grudge.array_context import PyOpenCLArrayContext
from grudge.discretization import make_discretization_collection
from grudge.models.em import get_rectangular_cavity_mode
from grudge.shortcuts import set_up_rk4
Thomas Gibson's avatar
Thomas Gibson committed
logger = logging.getLogger(__name__)
Thomas Gibson's avatar
Thomas Gibson committed
def main(ctx_factory, dim=3, order=4, visualize=False):
    cl_ctx = ctx_factory()
Bogdan Enache's avatar
Bogdan Enache committed
    queue = cl.CommandQueue(cl_ctx)

    allocator = cl_tools.MemoryPool(cl_tools.ImmediateAllocator(queue))
    actx = PyOpenCLArrayContext(queue, allocator=allocator)
Bogdan Enache's avatar
Bogdan Enache committed
    from meshmode.mesh.generation import generate_regular_rect_mesh
    mesh = generate_regular_rect_mesh(
Thomas Gibson's avatar
Thomas Gibson committed
            a=(0.0,)*dim,
            b=(1.0,)*dim,
            nelements_per_axis=(4,)*dim)
    dcoll = make_discretization_collection(actx, mesh, order=order)
Bogdan Enache's avatar
Bogdan Enache committed
    if 0:
        epsilon0 = 8.8541878176e-12  # C**2 / (N m**2)
        mu0 = 4*np.pi*1e-7  # N/A**2.
        epsilon = 1*epsilon0
        mu = 1*mu0
    else:
        epsilon = 1
        mu = 1
Bogdan Enache's avatar
Bogdan Enache committed
    from grudge.models.em import MaxwellOperator
    maxwell_operator = MaxwellOperator(
        dcoll,
        epsilon,
        mu,
        flux_type=0.5,
Thomas Gibson's avatar
Thomas Gibson committed
        dimensions=dim
    def cavity_mode(x, t=0):
Thomas Gibson's avatar
Thomas Gibson committed
        if dim == 3:
            return get_rectangular_cavity_mode(actx, x, t, 1, (1, 2, 2))
        else:
            return get_rectangular_cavity_mode(actx, x, t, 1, (2, 3))
    fields = cavity_mode(actx.thaw(dcoll.nodes()), t=0)

    maxwell_operator.check_bc_coverage(mesh)
Bogdan Enache's avatar
Bogdan Enache committed
    def rhs(t, w):
        return maxwell_operator.operator(t, w)
    dt = actx.to_numpy(
        maxwell_operator.estimate_rk4_timestep(actx, dcoll, fields=fields))
Bogdan Enache's avatar
Bogdan Enache committed
    dt_stepper = set_up_rk4("w", dt, fields, rhs)
Thomas Gibson's avatar
Thomas Gibson committed
    target_steps = 60
    final_t = dt * target_steps
    nsteps = int(final_t/dt) + 1
Thomas Gibson's avatar
Thomas Gibson committed
    logger.info("dt = %g nsteps = %d", dt, nsteps)
Bogdan Enache's avatar
Bogdan Enache committed
    from grudge.shortcuts import make_visualizer
    vis = make_visualizer(dcoll)
Bogdan Enache's avatar
Bogdan Enache committed
    step = 0
    def norm(u):
        return op.norm(dcoll, u, 2)
    e, h = maxwell_operator.split_eh(fields)
Thomas Gibson's avatar
Thomas Gibson committed
    if visualize:
        vis.write_vtk_file(
            f"fld-cavities-{step:04d}.vtu",
            [
                ("e", e),
                ("h", h),
            ]
        )
Bogdan Enache's avatar
Bogdan Enache committed
    for event in dt_stepper.run(t_end=final_t):
        if isinstance(event, dt_stepper.StateComputed):
            assert event.component_id == "w"
Bogdan Enache's avatar
Bogdan Enache committed
            step += 1
            e, h = maxwell_operator.split_eh(event.state_component)
            norm_e0 = actx.to_numpy(norm(u=e[0]))
            norm_e1 = actx.to_numpy(norm(u=e[1]))
            norm_h0 = actx.to_numpy(norm(u=h[0]))
            norm_h1 = actx.to_numpy(norm(u=h[1]))
Thomas Gibson's avatar
Thomas Gibson committed

            logger.info(
                "[%04d] t = %.5f |e0| = %.5e, |e1| = %.5e, |h0| = %.5e, |h1| = %.5e",
                step, event.t,
                norm_e0, norm_e1, norm_h0, norm_h1
            )

Bogdan Enache's avatar
Bogdan Enache committed
            if step % 10 == 0:
Thomas Gibson's avatar
Thomas Gibson committed
                if visualize:
                    vis.write_vtk_file(
                        f"fld-cavities-{step:04d}.vtu",
Bogdan Enache's avatar
Bogdan Enache committed
                        [
                            ("e", e),
                            ("h", h),
            # NOTE: These are here to ensure the solution is bounded for the
            # time interval specified
            assert norm_e0 < 0.5
            assert norm_e1 < 0.5
            assert norm_h0 < 0.5
            assert norm_h1 < 0.5


if __name__ == "__main__":
Thomas Gibson's avatar
Thomas Gibson committed
    import argparse

    parser = argparse.ArgumentParser()
    parser.add_argument("--dim", default=3, type=int)
    parser.add_argument("--order", default=4, type=int)
    parser.add_argument("--visualize", action="store_true")
    args = parser.parse_args()

    logging.basicConfig(level=logging.INFO)
    main(cl.create_some_context,
         dim=args.dim,
         order=args.order,
         visualize=args.visualize)