Izaak Beekman's Homepage
========================
// :Author: Izaak Beekman
// :email: ibeekman@NOSPAMprinceton.edu
:Revision: $Revision: 1.20 $
:Date: $Date: 2009-07-30 00:20:43 $
// :id: $Id: index.doc,v 1.20 2009-07-30 00:20:43 ibeekman Exp $
:Key Words: Izaak Beekman, Zaak Beekman, CRoCCo, Princeton graduate student, CFD
:1: mailto:ibeekman@NOSPAMprincteton.edu
:2: http://www.methods.co.nz/asciidoc/index.html
:3: http://www.princeton.edu/mae/people/faculty/martin/homepage/crocco_lab/
:4: http://www.princeton.edu/mae/people/faculty/martin/homepage/people/
:5: http://www.engineering.princeton.edu/map/equad_map.html
:6: http://maps.google.com/maps/ms?f=q&hl=en&geocode=&mrt=all&ie=UTF8&t=h&msa=0&msid=103190119659405189488.0004546b8747eb46cd3a3&ll=40.351209,-74.651713&spn=0.022011,0.038624&z=15
:7: http://www.princeton.edu/mae/people/faculty/martin/homepage/banner_logo.png
:8: http://www.google.com/calendar/embed?title=Izaak%20Beekman%20(Tentative)&mode=week&src=taq6hvdqlgvf4m2ja7cj5vamac%40group.calendar.google.com&color=%23BE6D00&ctz=America/New_York
:9: xmpp:zbeekman@gmail.com?message;subject=Browsing%20your%20Homepage
:10: http://www.purl.oclc.org/NET/zbeekman/
// http://www.princeton.edu/~ibeekman
// Izaak Beekman's homepage. Created using asciidoc.
WARNING: My homepage is currently under construction.
TIP: This page was created with {2}[AsciiDoc]. View
link:src/index.txt[the source code].
== About Me
image::ZBeekman.jpg[Izaak Beekman]
I am a graduate student at
http://www.princeton.edu[Princeton University]'s
link:http://engineering.princeton.edu[School of Engineering and
Applied Science] working in the {3}[CRoCCo Lab] for Professor {4}[Pino
Martin].
NOTE: More coming soon.
.Contact Information
Email::: {1}[ibeekman(at)princeton(dot)edu]
Office::: {5}[D309] {6}[Engineering Quadrangle,
Princeton University,
Princeton, NJ
08544]
Website::: {10}[http://www.purl.oclc.org/NET/zbeekman/] (Permanent url)
Phone:::
++++
++++
Schedule::: image:calendar_plus_en.gif["Google calendar", link="{8}"]
{8}[My tentative schedule]
GChat::: link:{9}[zbeekman]
AIM::: link:aim:goim?screenname=f22jaguar2[f22jaguar2]
SKYPE::: link:skype:zaak.beekman?call[zaak.beekman]
IRC Nick::: link:irc://irc.freenode.net/ibeekman,isnick[ibeekman]
Channels I visit::: link:irc://irc.freenode.net/#fortran[#fortran],
link:irc://irc.freenode.net/#bash[#bash],
link:irc://irc.freenode.net/#emacs[#emacs],
link:irc://irc.freenode.net/#ubuntu[#ubuntu]
////
// grrr this won't work
++++
++++
////
== Links
image:banner_logo.png["CRoCCo Lab", link="{3}"]
link:FortranManifesto[My Fortran programing manifesto] +
link:FortranResources[Fortran resources] +
link:FortranIssues[Common Fortran issues and pitfalls] +
link:MyLibs[A collection of useful Fortran, bash, and make codes as
well as other tips and tricks] +
link:CVSPrimer[CVS primer] +
http://www.princeton.edu/~ngrube/notes.html[Nate's Notes on
common computer issues] +
http://www.emacswiki.org/emacs/IzaakBeekman[My EmacsWiki page] +
link:Personal[Personal Information] (Favorite music etc.) +
== A Few Words of Wisdom
.From a Python Easter Egg
[source,python]
-----------
import this
-----------
.Output
------------
sys::[python -c "import this"]
------------
== Some Formulae
latexmath:[$\frac{\partial u_i}{\partial x_j} = S_{ij} + \Omega_{ij}$] +
latexmath:[$S_{ij} = \frac{1}{2} \left( \frac{\partial u_i}{\partial x_j} +
\frac{\partial u_j}{\partial x_i} \right)$] +
latexmath:[$\Omega_{ij} = \frac{1}{2} \left( \frac{\partial u_i}{\partial x_j} -
\frac{\partial u_j}{\partial x_i} \right)$] +
latexmath:[$\omega_i = \epsilon_{ijk} \frac{\partial}{\partial x_j}
u_k = -\epsilon_{ijk}\Omega_{jk}$] +
##latexmath:[$\epsilon_{ijk} \epsilon_{lmn} \equiv \left| \begin{array}{ccc}
\delta_{il} & \delta_{im} & \delta_{in} \\
\delta_{jl} & \delta_{jm} & \delta_{jn} \\
\delta_{kl} & \delta_{km} & \delta_{kn}
\end{array} \right|$]## +
// This does not display correctly due to a bug
// in {2}[AsciiDoc]. I have informed {2}[AsciiDoc]'s maintainer and the
// problem has been remedied for the next release. +
##latexmath:[$\mathrm{Det} \left( \mathbf{A} \right) = \sum_i \sum_j \sum_k
a_{1i} a_{2j} a_{3k} \epsilon_{ijk}$]##
== Some Fortran
.Simple Fortran
[source,fortran]
-----------------------------------------------------------
MODULE example
USE: modtypes, ONLY: DP ! from modtypes.f90
IMPLICIT NONE
REAL(DP), DIMENSION(:,:), ALLOCATABLE, PROTECTED :: foo, bar
INTERFACE sum
MODULE PROCEDURE :: sumvect, summatrix, sumcomplex
END INTERFACE
CONTAINS
SUBROUTINE sumvect(a,b)
! ...
END MODULE
----------------------------------------------------------