feat: add pendulum lab paper (#55)
This commit is contained in:
parent
a2a85696b5
commit
b19fe3ce83
2 changed files with 51 additions and 0 deletions
BIN
public/download/pendulum-lab/file1.pdf
Normal file
BIN
public/download/pendulum-lab/file1.pdf
Normal file
Binary file not shown.
|
@ -412,6 +412,32 @@ On Day 1 we will discuss the ins and outs of the robot. The Electrical Sub team
|
||||||
SOTA performance on both benign and adversarial scale, while requiring no extra
|
SOTA performance on both benign and adversarial scale, while requiring no extra
|
||||||
(in fact, often less) cost than a standard pruning procedure.`,
|
(in fact, often less) cost than a standard pruning procedure.`,
|
||||||
},
|
},
|
||||||
|
'pendulum-lab': {
|
||||||
|
manifest: {
|
||||||
|
title: 'Pendulum Lab Report',
|
||||||
|
latest: 1,
|
||||||
|
authors: ['ywu', 'cbordalo', 'ckrueger', 'mfaber'],
|
||||||
|
status: 'draft',
|
||||||
|
dates: [1709946213],
|
||||||
|
topics: ['physics'],
|
||||||
|
type: 'paper',
|
||||||
|
keywords: [
|
||||||
|
'pendulum',
|
||||||
|
'pendulum lab',
|
||||||
|
'physics',
|
||||||
|
'quantum mechanics',
|
||||||
|
'AP physics',
|
||||||
|
'budhabhatti',
|
||||||
|
'lab report',
|
||||||
|
'lab',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
file: 'pdf',
|
||||||
|
abstract: `The motion of a simple pendulum and the acceleration due to local gravity are connected, and we
|
||||||
|
can express its period 𝑇 in terms of its length ℓ and gravity 𝑔 through a simple formula. This also means that if we can determine 𝑇 and ℓ, we can then calculate a value for 𝑔. In this
|
||||||
|
paper, we will show how to calculate an experimental value of 𝑔 for Earth’s gravity using a simple
|
||||||
|
pendulum.`,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Topic {
|
export interface Topic {
|
||||||
|
@ -456,6 +482,12 @@ export const topics: Readonly<{ [key: string]: Topic }> = {
|
||||||
'Political science is the study of politics. It is a broad field, encompassing all aspects of government, politics, and international relations.',
|
'Political science is the study of politics. It is a broad field, encompassing all aspects of government, politics, and international relations.',
|
||||||
wiki: 'https://en.wikipedia.org/wiki/Political_science',
|
wiki: 'https://en.wikipedia.org/wiki/Political_science',
|
||||||
},
|
},
|
||||||
|
physics: {
|
||||||
|
name: 'Physics',
|
||||||
|
description:
|
||||||
|
'Physics is the natural science that studies matter, its fundamental constituents, motion, and the effects of energy and forces on it.',
|
||||||
|
wiki: 'https://en.wikipedia.org/wiki/Physics',
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -812,6 +844,25 @@ export const authors: Readonly<{ [key: string]: Author }> = {
|
||||||
nationality: ['ind', 'usa'],
|
nationality: ['ind', 'usa'],
|
||||||
bio: `I am Rohan, a Mechanical Engineering student from India. I am passionate about designing and developing robots. I love to learn new things. I am currently a CAD Lead at Team 1280.`,
|
bio: `I am Rohan, a Mechanical Engineering student from India. I am passionate about designing and developing robots. I love to learn new things. I am currently a CAD Lead at Team 1280.`,
|
||||||
},
|
},
|
||||||
|
ckrueger: {
|
||||||
|
name: {
|
||||||
|
first: 'Charles',
|
||||||
|
last: 'Krueger',
|
||||||
|
nickname: 'Charlie',
|
||||||
|
},
|
||||||
|
affiliation: ['Student@srvhs'],
|
||||||
|
image: '/img/profiles/default.png',
|
||||||
|
nationality: ['usa', 'sgp'],
|
||||||
|
},
|
||||||
|
mfaber: {
|
||||||
|
name: {
|
||||||
|
first: 'Matthieu',
|
||||||
|
last: 'Fayet-Faber',
|
||||||
|
},
|
||||||
|
affiliation: ['Student@srvhs'],
|
||||||
|
image: '/img/profiles/default.png',
|
||||||
|
nationality: ['usa', 'fra'],
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Affiliation {
|
export interface Affiliation {
|
||||||
|
|
Loading…
Reference in a new issue