Pants to Moose Head

The Bacliff Exploration Society is embarking on an epic experiment.  The goal: to start with a pair of pants, and (by bartering, trading, and/or stealing) to end up with a moose head (or a narwhal tusk, or stuffed polar bear or penguin).  Follow this grand adventure at: Pants to Moose Head.

Fortran Cross Product

In today’s lesson, we learn how to compute a vector cross product using Fortran.

function cross(a,b) result(axb)

implicit none
integer,parameter :: wp=selected_real_kind(15, 307) !double precision
real(wp),dimension(3) :: axb
real(wp),dimension(3),intent(in) :: a
real(wp),dimension(3),intent(in) :: b 

axb(1) = a(2)*b(3) - a(3)*b(2)
axb(2) = a(3)*b(1) - a(1)*b(3)
axb(3) = a(1)*b(2) - a(2)*b(1)

end function cross

Fajita Jamboree

The Bacliff Exploration Society Winter Solstice Fajita Jamboree was held on December 15, 2010 at Tierra Luna Grill in Houston, Texas.  T. Campbell was presented with the Henry Hudson Award for discovering intelligent life in Alaska (i.e., a bear), and J. Eldridge was inducted into the elite corps of the Jr. Ham Radio Rangers.

Congratulations FASTRAC!

Congratulations to all the members of the FASTRAC team!

The FASTRAC (Formation Autonomy Spacecraft with Thrust, Relnav, Attitude and Crosslink) satellites are a pair of satellites built by students from the University of Texas at Austin that were launched on November 19 on a Minotaur 4 rocket from the Kodiak Launch Complex in Alaska.