Skip to content

Commit

Permalink
Merge branch 'add-michelle' of github.com:michellegzy/niemeyer-resear…
Browse files Browse the repository at this point in the history
…ch-group.github.io into add-michelle
  • Loading branch information
michellegzy committed Dec 15, 2023
2 parents 859173f + 8881839 commit bea641b
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
14 changes: 14 additions & 0 deletions src/data/Pubs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
10 changes: 5 additions & 5 deletions src/routes/(app)/lab/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}

<h3>Former Affiliated Ph.D. students</h3>
<h3>Former affiliated Ph.D. students</h3>

{#each $profile.getPeople(
person => !person.active && !person.advised && person.level === "phd",
Expand All @@ -107,16 +107,16 @@
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}

<h3>Former Postdocs</h3>
<!--<h3>Former postdocs</h3>
{#each $profile.getPeople(
person => !person.active && person.level === "postdoc",
person => -person.startdate
) as person }
<Person person={person} highlight={isPersonHighlighted(person.id)} />
{/each}
{/each}-->

<h3>Former Masters</h3>
<h3>Former M.S. students</h3>

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


<h3>Former Undergrads</h3>
<h3>Former undergraduate students</h3>
{#each $profile.getPeople(
person => !person.active && person.level === "undergrad",
person => -person.startdate
Expand Down
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 bea641b

Please sign in to comment.