Meeting Update for 10/11/2011

  • Checked in threaded version of the code along with some minor bug fixes that allowed me to close tickets
  • Posted the scaling results and closed ticket #95 (Scrambler Scaling Tests)
  • Closed ticket #148 as the errors were related to stack issues on Kure.
  • I also closed ticket #98 and instead created the milestone:"Implementing Multi-Physics" as well as individual tickets for various desired multiphysics capabilities
    • #150 (Implementing Self Gravity in Cylindrical Coordinates)
    • #151 (Thermal Diffusion)
    • #152 (Implmenting Magnetic Resistivity)
    • #153 (Implementing Viscosity)
    • #154 (Sink Particles in 2D and Cylindrical)
  • Added testbuilds.s script to repo that compiles every problem module (although it could also be modified to start each problem. This is useful if their are modifications to the way problem modules are interfaced or if stuff is removed from data files…)
    #!/bin/bash
    cd modules
    for i in $(ls -d */ | grep -vE 'objects|tests|Problem') ; do
      rm Problem
      ln -s $i Problem
      echo Testing $i
      touch Problem/problem.f90
      cd ../
      make
      cd modules
     done
    cd ../
    
    for i in $(ls -d tests/*/) ; do
      rm Problem
      ln -s $i Problem
      echo Testing $i
      touch Problem/problem.f90
      cd ../
      make
      cd modules
     done
    cd ../
    
    

Comments

No comments.