Skip to content

Commit

Permalink
adds M&C 2023 papers and Todd
Browse files Browse the repository at this point in the history
  • Loading branch information
kyleniemeyer committed Sep 21, 2023
1 parent 27d70ae commit f03d3a9
Show file tree
Hide file tree
Showing 6 changed files with 57 additions and 2 deletions.
15 changes: 14 additions & 1 deletion src/data/People.ts
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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,
Expand Down
44 changes: 43 additions & 1 deletion src/data/Pubs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
Binary file added static/images/headshots/mug-todd-palmer.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit f03d3a9

Please sign in to comment.