diff --git a/src/data/People.ts b/src/data/People.ts index dd05ec69..f2bdf96f 100644 --- a/src/data/People.ts +++ b/src/data/People.ts @@ -1,6 +1,19 @@ import type Person from "../lib/models/Person"; export const People: Person[] = [ + { + id: "todd-palmer", + name: "Todd S. Palmer", + pronouns: "he/him", + active: true, + advised: false, + level: "faculty", + dept: "NSE", + bio: "Todd is Professor in the School of Nuclear Science and Engineering at Oregon State University. His research interests include numerical techniques for radiation transport and diffusion, reactor physics, general numerical methods, Monte Carlo methods, radiation transport in stochastic mixtures, and computational fluid dynamics.", + url: "https://engineering.oregonstate.edu/people/todd-palmer", + startdate: 2020, + enddate: null, + }, { id: "jacob-adams", name: "Jacob Adams", @@ -9,7 +22,7 @@ export const People: Person[] = [ advised: true, level: "phd", dept: "MIME", - bio: "Jacob is a PhD student in Mechanical Engineering, studying and modeling the behavior of cryogenic propellants in space-based tanks for NASA. He recieved his BS in Mechanical Engineering from LeTourneau university.", + bio: "Jacob is a PhD student in Mechanical Engineering, studying and modeling the behavior of cryogenic propellants in space-based tanks for NASA. He recieved his BS in Mechanical Engineering from LeTourneau University.", url: "https://www.linkedin.com/in/adams-jacob/", startdate: 2023, enddate: null, diff --git a/src/data/Pubs.ts b/src/data/Pubs.ts index 3e5ecc36..905a199c 100644 --- a/src/data/Pubs.ts +++ b/src/data/Pubs.ts @@ -2,6 +2,48 @@ import type Paper from "$lib/models/Paper"; import { null_to_empty } from "svelte/internal"; export const Publications: Paper[] = [ + { + id: "mcdc-development", + kind: "refereed conference paper", + authors: ["Ilham Variansyah", "@jpmorgan", "Jordan Northrop", "@ken", "Ryan G. McClarren"], + year: 2023, + title: "Development of MC/DC: a performant, scalable, and portable Python-based Monte Carlo neutron transport code", + source: "International Conference on Mathematics and Computational Methods Applied to Nuclear Science and Engineering", + doi: null, + eprint: "https://arxiv.org/abs/2305.07636", + pages: null, + //volume: null, + //issue: null, + contribution: "Verifies and demonstrates MC/DC (Monte Carlo Dynamic Code) code for simulating transient neutron transport." + }, + { + id: "hybrid-delta-tracking", + kind: "refereed conference paper", + authors: ["@jpmorgan", "Travis J. Trahan", "Timothy P. Burke", "Colin J. Josey", "@ken"], + year: 2023, + title: "Hybrid-Delta Tracking on a Structured Mesh in MCATK", + source: "International Conference on Mathematics and Computational Methods Applied to Nuclear Science and Engineering", + doi: null, + eprint: "https://arxiv.org/abs/2306.07847", + pages: null, + //volume: null, + //issue: null, + contribution: "Demonstrates performance of hybrid delta tracking for surfaces in the Monte Carlo Application Toolkit." + }, + { + id: "one-cell-inversion", + kind: "refereed conference paper", + authors: ["@jpmorgan", "Ilham Variansyah", "@todd-palmer", "@ken"], + year: 2023, + title: "Exploring One-Cell Inversion Method for Transient Transport on GPU", + source: "International Conference on Mathematics and Computational Methods Applied to Nuclear Science and Engineering", + doi: null, + eprint: "https://arxiv.org/abs/2305.13555", + pages: null, + //volume: null, + //issue: null, + contribution: "Introduces a new iterative scheme for deterministic neutron transport modeling, one-cell inversion, that offers high performance on GPUs." + }, { id: "onsite-energy", kind: "refereed conference paper", @@ -33,7 +75,7 @@ export const Publications: Paper[] = [ { id: "mcdc-tnt", kind: "refereed conference paper", - authors: ["@jpmorgan", "Todd S. Palmer", "@ken"], + authors: ["@jpmorgan", "@todd-palmer", "@ken"], year: 2022, title: "Explorations of Python-Based Automatic Hardware Code Generation for Neutron Transport Applications", source: "Transactions of the American Nuclear Society", diff --git a/static/images/headshots/mug-todd-palmer.jpg b/static/images/headshots/mug-todd-palmer.jpg new file mode 100644 index 00000000..247b322a Binary files /dev/null and b/static/images/headshots/mug-todd-palmer.jpg differ diff --git a/static/images/papers/paper-hybrid-delta-tracking.png b/static/images/papers/paper-hybrid-delta-tracking.png new file mode 100644 index 00000000..2e37f376 Binary files /dev/null and b/static/images/papers/paper-hybrid-delta-tracking.png differ diff --git a/static/images/papers/paper-mcdc-development.png b/static/images/papers/paper-mcdc-development.png new file mode 100644 index 00000000..9f62a3dd Binary files /dev/null and b/static/images/papers/paper-mcdc-development.png differ diff --git a/static/images/papers/paper-one-cell-inversion.png b/static/images/papers/paper-one-cell-inversion.png new file mode 100644 index 00000000..d0be0003 Binary files /dev/null and b/static/images/papers/paper-one-cell-inversion.png differ