diff --git a/src/data/Pubs.ts b/src/data/Pubs.ts index 905a199c..cbcfcc15 100644 --- a/src/data/Pubs.ts +++ b/src/data/Pubs.ts @@ -2,6 +2,20 @@ import type Paper from "$lib/models/Paper"; import { null_to_empty } from "svelte/internal"; export const Publications: Paper[] = [ + { + id: "bgc-parameter-estimation", + kind: "journal article", + authors: ["Skyler Kern", "Mary E. McGuinn", "Katherin M. Smith", "Nadia Pinardi", "@ken", "Nicole S. Lovenduski", "@peter-hamlington"], + year: 2023, + title: "Computationally efficient parameter estimation for high-dimensional ocean biogeochemical models", + source: "Geoscientific Model Development", + doi: "https://doi.org/10.5194/gmd-2023-107", + //eprint: null, + pages: null, + //volume: null, + //issue: null, + contribution: "Shows a method for optimizing parameters for biogeochemical models based on ocean observations." + }, { id: "mcdc-development", kind: "refereed conference paper", diff --git a/src/routes/(app)/lab/+page.svelte b/src/routes/(app)/lab/+page.svelte index f92fd669..3f219f47 100644 --- a/src/routes/(app)/lab/+page.svelte +++ b/src/routes/(app)/lab/+page.svelte @@ -98,7 +98,7 @@ {/each} -

Former Affiliated Ph.D. students

+

Former affiliated Ph.D. students

{#each $profile.getPeople( person => !person.active && !person.advised && person.level === "phd", @@ -107,16 +107,16 @@ {/each} -

Former Postdocs

+ -

Former Masters

+

Former M.S. students

{#each $profile.getPeople( person => !person.active && person.level === "masters", @@ -126,7 +126,7 @@ {/each} -

Former Undergrads

+

Former undergraduate students

{#each $profile.getPeople( person => !person.active && person.level === "undergrad", person => -person.startdate diff --git a/static/images/papers/paper-bgc-parameter-estimation.png b/static/images/papers/paper-bgc-parameter-estimation.png new file mode 100644 index 00000000..570cd218 Binary files /dev/null and b/static/images/papers/paper-bgc-parameter-estimation.png differ