Skip to content

Commit

Permalink
adds consulting page
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleniemeyer committed May 13, 2024
1 parent fa823d2 commit 62afcf2
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<Link to="/" at={"/"}>Research</Link>
<Link to="/lab" at={"/lab"}>Lab</Link>
<Link to="/publications" at={"/publications"}>Publications</Link>
<Link to="/consulting" at={"/consulting"}>Consulting</Link>
<!-- <Link to="/essays" at={"/essays"}>Essays</Link> -->
<Link to="/talks" at={"/talks"}>Talks</Link>
<Link to="/classes" at={"/classes"}>Classes</Link>
Expand Down
39 changes: 39 additions & 0 deletions src/routes/(app)/consulting/+page.svelte
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
<script lang="ts">
import Block from "$lib/components/Block.svelte";
import External from "$lib/components/External.svelte";
import Image from "$lib/components/Thumbnail.svelte";
</script>

<h1>
Consulting services
</h1>

<p>
Beyond my academic collaborations related to sponsored research projects, joint funding
applications, and teaching, I also provide consulting services via Niemeyer Consulting LLC
(registered in Oregon).
</p>
<p>
I provide consulting services in my personal capacity in these general areas and beyond:
</p>
<ul>
<li>modeling and simulation of thermal-fluid systems, particularly involving reacting fluid flows</li>
<li>high-performance computing, particularly using high-level languages like Python</li>
<li>testing of scientific and engineering software</li>
<li>open-source software development</li>
<li>verification and validation of science and engineering models</li>
<li>software support</li>
<li>review and evaluation of proposals for research & development funding</li>
</ul>
<p>
Services also include delivery of courses and training in the above and other areas, as well as
supporting supervision of research and engineering projects in my areas of expertise.
</p>
<p>
Consulting fees for these services are negotiated on an individual basis.
Services are provided to institutions as well as individuals.
</p>
<p>
Inquiries for services can be made via <External to="mailto:[email protected]">email</External>.
</p>

0 comments on commit 62afcf2

Please sign in to comment.