Matei,
On Tue, 27 May 2008, Matei Radulescu wrote:
> What would be the best starting point to start studying an example of
> folded script looking at the problem of the interaction of a
> detonation wave and/or an inert shock wave interaction with a ramp?
> JJQ's vki second set of notes deal with such an example at some
> length, but I wonder if the procedure and scripts have been improved
> since then, and/or ported to the reactive case?
AMRITA+AMR_SOL's operation is essentially independent of the EquationSet
and so if you have a ramp-script that works for the plain EulerEquations
it will automatically work with the ReactiveEulerEquations i.e there is
no porting in the classical sense. Now if you take a look at AMRITA's
big picture:
http://www.amrita-cfd.org/html/screenshots
you will see on the notice board (at about 11 o'clock) a single mach
reflection for a detonation wave interacting with a ramp. That particular
calculation, done back in 1993, used a body-fitted grid which is
set up in the fashion decribed in the VKI notes.
There is, however, an alternative approach you can follow which
uses a level-set technique on a Cartesian mesh. The examples:
amrcp latex/Chp2/method.3
amrcp latex/Chp2/method.4
show it working in the inert case. But you will need to fix
the following bug in AMRITAv3.00 before you can run them.
Hand-edit the file:
$AMRITA/Amrita/keywords/def/EquationSet/amr_sol.pl
After line 54:
$amrita->set_thistoken('amr_sol::NEQN', 0);
insert:
my $frame = "$STACK{$PROCnamebase}_";
This bug crept in when I refactored amr_sol so as to make it
easier to maintain.
> In a related way, the generation of html help files and generation of
The -html option described in the VKI noted has been deprecated.
> mpeg movies detailed in the vki notes do not seem to work with my
> installation of amritav3.00 on a 32bit fc7 installation. is that due
> to some incompatibility with the older scripts, or simply an
> installation issue on my part? When i installed it, all the
I would need to check up on the mpeg problem, but I know Hans
has been generating movies and so I guess it could be a local problem
at your end.
> components seemed to work well, except some serious issues with the
> GIMP; gimp-perl is not available for my system.
The gimp-perl interface is used to craft buttons and the like.
It's not needed to be able to run any of the examples in the VKI
notes, but I can always put together a tarfile containing
the necessary Perl modules.
James