diff --git a/_bibliography/papers.bib b/_bibliography/papers.bib index cf60fb7a293cf..8baea439b2bdf 100644 --- a/_bibliography/papers.bib +++ b/_bibliography/papers.bib @@ -1,6 +1,42 @@ --- --- +@article{gao2026mixed, + bibtex_show={true}, + title={Mixed finite element method for device simulations}, + author={Gao, Yingjia and Kumar, Naveen and Williams, Ross and Shvarts, Andrei and Kaczmarczyk, Lukasz and Georgiev, Vihar}, + journal={Solid-State Electronics}, + pages={109346}, + year={2026}, + publisher={Elsevier}, + abbr={SSE}, + doi={10.1016/j.sse.2026.109346} +} + +@article{kulikova2026conservative, + bibtex_show={true}, + title={Conservative data-driven finite element framework with adaptive hp-refinement for diffusion problems with material uncertainty}, + author={Kulikov{\'a}, Adriana and Shvarts, Andrei G and Kaczmarczyk, {\L}ukasz and Pearce, Chris J}, + journal={Computer Methods in Applied Mechanics and Engineering}, + volume={452}, + pages={118703}, + year={2026}, + publisher={Elsevier}, + abbr={CMAME}, + doi={10.1016/j.cma.2025.118703} +} + +@phdthesis{kulikova2025data, + bibtex_show={true}, + abbr={Dissertation}, + title={Data-driven weaker mixed formulation for diffusion problems}, + author={Kulikov{\'a}, Adriana}, + year={2025}, + journal = {Thesis}, + school={University of Glasgow}, + doi={10.5525/gla.thesis.85306} +} + @article{lockington2024evaluating, bibtex_show={true}, title={Evaluating the forces involved in bubble management in DMEK surgery: mathematical and computational model with clinical implications}, diff --git a/_layouts/profiles.liquid b/_layouts/profiles.liquid index c7f20a3f27cd0..6b97918d45869 100644 --- a/_layouts/profiles.liquid +++ b/_layouts/profiles.liquid @@ -3,7 +3,69 @@ layout: page ---
- {% if page.profiles %} + {% if page.directors %} +

Directors

+ {% for profile in page.directors %} +
+
+ {% if profile.image %} + {% assign profile_image_path = profile.image | prepend: 'assets/img/' %} + {% if profile.image_circular %} + {% assign profile_image_class = 'img-fluid z-depth-1 rounded-circle' %} + {% else %} + {% assign profile_image_class = 'img-fluid z-depth-1 rounded' %} + {% endif %} + {% capture sizes %}(min-width: {{ site.max_width }}) {{ site.max_width | minus: 30 | times: 0.3}}px, (min-width: 576px) 30vw, 95vw"{% endcapture %} + {% include figure.liquid loading="eager" path=profile_image_path class=profile_image_class sizes=sizes alt=profile.image %} + {% endif %} + {% if profile.more_info %} +
{{ profile.more_info }}
+ {% endif %} +
+ +
+ {% if profile.content %} + {% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %} + {{ profile_content | markdownify }} + {% else %} + {{ content }} + {% endif %} +
+ {% endfor %} + {% endif %} + + {% if page.scientific_advisers %} +

Scientific Advisers

+ {% for profile in page.scientific_advisers %} +
+
+ {% if profile.image %} + {% assign profile_image_path = profile.image | prepend: 'assets/img/' %} + {% if profile.image_circular %} + {% assign profile_image_class = 'img-fluid z-depth-1 rounded-circle' %} + {% else %} + {% assign profile_image_class = 'img-fluid z-depth-1 rounded' %} + {% endif %} + {% capture sizes %}(min-width: {{ site.max_width }}) {{ site.max_width | minus: 30 | times: 0.3}}px, (min-width: 576px) 30vw, 95vw"{% endcapture %} + {% include figure.liquid loading="eager" path=profile_image_path class=profile_image_class sizes=sizes alt=profile.image %} + {% endif %} + {% if profile.more_info %} +
{{ profile.more_info }}
+ {% endif %} +
+ +
+ {% if profile.content %} + {% capture profile_content %}{% include_relative {{ profile.content }} %}{% endcapture %} + {{ profile_content | markdownify }} + {% else %} + {{ content }} + {% endif %} +
+ {% endfor %} + {% endif %} + + {% if page.profiles and page.directors == nil and page.scientific_advisers == nil %} {% for profile in page.profiles %}
diff --git a/_pages/about.md b/_pages/about.md index 37c851ba5fac1..4a741c4af3601 100644 --- a/_pages/about.md +++ b/_pages/about.md @@ -38,7 +38,7 @@ latest_posts: We develop robust finite element techniques to solve complex problems across various industries, including manufacturing, healthcare, automotive, aerospace, and energy. You can find more about our solutions to challenging problems on the [projects](/projects) page. #### Our technology -Our technology is based on MoFEM, a finite element engine developed at MOS and the University of Glasgow. It is validated and used by the UK nuclear industry (EDF Energy, Jacobs, Amentum) and the UK aerospace industry (Rolls-Royce). You can learn more about `MoFEM` capabilities on the [technology](/technology) page, and explore its academic applications and industrial on the [publications](/publications) page. +Our technology is based on MoFEM, a finite element engine developed at MOS and the University of Glasgow. It is validated and used by the UK nuclear industry (EDF Energy, Jacobs, Amentum) and the UK aerospace industry (Rolls-Royce). You can learn more about `MoFEM` capabilities on the [technology](/technology) page, and explore its academic and industrial applications on the [publications](/publications) page. #### Our services diff --git a/_pages/about_chris.md b/_pages/about_chris.md index 4b84b7d1706f1..54c41417a070a 100644 --- a/_pages/about_chris.md +++ b/_pages/about_chris.md @@ -1,3 +1,3 @@ ### **Prof Chris Pearce** -I am a `co-founder` and `Director` of Mesh-Oriented Solutions and `Professor of Computational Mechanics` at the University of Glasgow, where I am also Director of the `Glasgow Computational Engineering Centre` and currently `Vice-principal` for Research & Knowledge Exchange. I’m a `Chartered Engineer` and Fellow of the `Institution of Civil Engineers`. I have a 30 years experience of computational engineering research, focusing on modelling complex material behaviour and multi-physics problems, and have applied these techniques to various fields, including Civil, Nuclear, Manufacturing, and Biomedical Engineering. I have an established track record of knowledge transfer and I have addressed critical, life-limiting structural integrity issues. +I am a `co-founder` and `Chair of the Board of Directors` of **Mesh-Oriented Solutions** and `Professor of Computational Mechanics` at the University of Glasgow, where I am also Director of the `Glasgow Computational Engineering Centre` and currently `Vice-principal` for Research & Knowledge Exchange. I’m a `Chartered Engineer` and Fellow of the `Institution of Civil Engineers`. I have a 30 years experience of computational engineering research, focusing on modelling complex material behaviour and multi-physics problems, and have applied these techniques to various fields, including Civil, Nuclear, Manufacturing, and Biomedical Engineering. I have an established track record of knowledge transfer and I have addressed critical, life-limiting structural integrity issues. diff --git a/_pages/about_christoph.md b/_pages/about_christoph.md new file mode 100644 index 0000000000000..d8e169b3d0d18 --- /dev/null +++ b/_pages/about_christoph.md @@ -0,0 +1,6 @@ +### **Dr Christoph Naumann** + +I am a `Product Director` of **Mesh-Oriented Solutions**. I am a Mechanical Engineer working at the intersection of mechanics and software development, with a focus on end-to-end automation, high-performance design optimisation, and complex material physics. With more than a decade of industry experience, including leading an optimisation and automated engineering team at a global technology leader, I develop solutions where standard software reaches its limits. +A key part of my work is turning advanced simulation and expert know-how into tools that are accessible to non-experts. This means building robust, automated engineering workflows that cover complete engineering processes from requirements to reliable, validated results, and finding pragmatic solutions for genuinely hard, industrial-scale problems. +I specialise in efficient and robust optimisation methods as well as advanced material modelling, particularly nonlinear polymer behaviour. +My work has significantly improved R&D efficiency and effectiveness. I hold various patents for products that far outperformed existing solutions. Furthermore, I have accelerated development speeds by reducing critical reporting from days to minutes and turning manual optimisation cycles that used to take weeks into fully automated overnight processes. diff --git a/_pages/about_lukasz.md b/_pages/about_lukasz.md index 1f3833227f456..f17af009b3425 100644 --- a/_pages/about_lukasz.md +++ b/_pages/about_lukasz.md @@ -1,4 +1,4 @@ ### **Prof Łukasz Kaczmarczyk** I am a co-founder and `Technical Director` of **Mesh-Oriented Solutions** and a `Professor` of Applied Computational Modeling at the `University of Glasgow` in the `Glasgow Computational Engineering Centre`. I have nearly two decades of experience developing code for industrial applications. My software solutions are used by EDF and Jacobs for structural integrity problems in aggressive nuclear reactor environments. I also provide finite element technology solutions, working with companies such as Rolls-Royce, Siemens, and Freudenberg, on modeling wide range of industrial processes. -I designed `MoFEM`, a unique finite element system that utilises emerging finite element technologies in industrial applications. `MoFEM` is developed to shorten the time between innovation and real-world application, providing the flexibility of research code while being tested and validated to comply with rigorous industrial standards. +I designed `MoFEM`, a unique finite element system that utilises emerging finite element technologies in industrial applications. `MoFEM` is developed to shorten the time between innovation and real-world application, providing the flexibility of research code while being tested and validated to comply with rigorous industrial standards. \ No newline at end of file diff --git a/_pages/about_vihar.md b/_pages/about_vihar.md new file mode 100644 index 0000000000000..aeabf0b169620 --- /dev/null +++ b/_pages/about_vihar.md @@ -0,0 +1,3 @@ +### **Prof Vihar Georgiev** + +I am a [Professor of Nanoelectronics,](https://www.gla.ac.uk/schools/engineering/staff/vihargeorgiev/) the leader of the [DeepNano Group](https://deepnano.org/) at the University of Glasgow and [an EPSRC UKRI Innovation Fellow](https://gow.epsrc.ukri.org/NGBOViewGrant.aspx?GrantRef=EP/S001131/1). My group is part of [Glasgow Computational Engineering Centre (GCEC).](https://www.gla.ac.uk/research/az/gcec/) The aim of the group is to continue the research in modeling and simulations areas of electronic devices by combining not only analytical and numerical approaches but also machine learning and artificial intelligence methods. The DeepNano Group research activities are focused on the modelling and simulation of nanoscale devices for advanced optoelectronics, biosensors and quantum applications. I have more than 15 years of experience of developing [numerical solvers](https://link.springer.com/article/10.1007/s10825-020-01519-0) and [machine learning methods](https://ieeexplore.ieee.org/abstract/document/8779691) that are used for modelling and simulations of various semiconductor devices, such as [nanowire transistors,](https://eprints.gla.ac.uk/136313/)[tunnelling FETs](https://iopscience.iop.org/article/10.1088/1361-6528/abd125), [molecular flash memories](https://eprints.gla.ac.uk/100435/) and [bio-sensors](https://www.gla.ac.uk/research/az/devmod/research/biosensors/) not only on [IV](https://iopscience.iop.org/article/10.1088/1361-6528/abacf3) and [III-V semiconductor](https://eprints.gla.ac.uk/269630/) but also [molecules](https://eprints.gla.ac.uk/233110/), [carbon nanotubes](http://eprints.gla.ac.uk/159398/) and [Josephson’s junctions](https://eprints.gla.ac.uk/267379/). \ No newline at end of file diff --git a/_pages/profiles.md b/_pages/profiles.md index 5d1d2dbc08bb9..654a13452b238 100644 --- a/_pages/profiles.md +++ b/_pages/profiles.md @@ -6,7 +6,7 @@ title: people nav: true nav_order: 6 -profiles: +directors: # if you want to include more than one profile, just replicate the following block # and create one content file for each profile inside _pages/ - align: right @@ -30,20 +30,26 @@ profiles: content: about_lukasz.md image_circular: true # crops the image to make it circular more_info: > -

lukasz.kaczmarczyk@glasgow.ac.uk

+

lukasz@mesh-oriented-solutions.com

- align: left + image: christoph_image.jpg + content: about_christoph.md + image_circular: true # crops the image to make it circular + more_info: > +

christoph@mesh-oriented-solutions.com

+ - align: right image: chris_image.jpg content: about_chris.md image_circular: true # crops the image to make it circular more_info: >

chris.pearce@glasgow.ac.uk

- # - align: right - # image: mofem_small_logo.png - # content: about_mofem.md - # image_circular: true # crops the image to make it circular - # more_info: > - #

555 your office number

- #

123 your address street

- #

Your City, State 12345

+ +scientific_advisers: + - align: left + image: vihar_image.jpg + content: about_vihar.md + image_circular: true # crops the image to make it circular + more_info: > +

vihar.georgiev@glasgow.ac.uk

--- diff --git a/_pages/publications.md b/_pages/publications.md index 42ec6513629ae..a598f1c19d52e 100644 --- a/_pages/publications.md +++ b/_pages/publications.md @@ -2,7 +2,7 @@ layout: page permalink: /publications/ title: publications -description: Selected publications authored by the founders of Mesh-Oriented Solutions demonstrating advanced applications of MoFEM +description: Selected publications authored and theses supervised by the founders of Mesh-Oriented Solutions demonstrating advanced applications of MoFEM # years: [2023, 2022, 2021, 2020, 2019, 2017] nav: true diff --git a/assets/img/christoph_image.jpg b/assets/img/christoph_image.jpg new file mode 100644 index 0000000000000..d7b9a1444d5ba Binary files /dev/null and b/assets/img/christoph_image.jpg differ diff --git a/assets/img/vihar_image.png b/assets/img/vihar_image.png new file mode 100644 index 0000000000000..4dc867bee5fc6 Binary files /dev/null and b/assets/img/vihar_image.png differ