Add files via upload

This commit is contained in:
Nils Berglund
2023-12-26 23:01:20 +01:00
committed by GitHub
parent 283ebb8ebf
commit 281cac4775
30 changed files with 2951 additions and 499 deletions

View File

@@ -224,6 +224,10 @@
#define OSCIL_LEFT_YSHIFT 0.0 /* y-dependence of left oscillation (for non-horizontal waves) */
#define DRAW_WAVE_PROFILE 0 /* set to 1 to draw a profile of the wave */
#define OSCILLATING_SOURCE_PERIOD 20 /* period of oscillating source */
#define MU_B 1.0 /* parameter controlling the dimensions of domain */
#define DRAW_WAVE_PROFILE 0 /* set to 1 to draw a profile of the wave */
#define VERTICAL_WAVE_PROFILE 0 /* set to 1 to draw wave profile vertically */
#define DRAW_WAVE_TIMESERIES 0 /* set to 1 to draw a time series of the wave */
/* end of constants only used by sub_wave and sub_maze */
#include "global_pdes.c" /* constants and global variables */
@@ -847,7 +851,7 @@ void animation()
draw_wave_energy(phi, psi, xy_in, 1.0, 0);
printf("drawing billiard\n");
draw_billiard_half(B_DOMAIN, CIRCLE_PATTERN, 0);
draw_billiard_half(B_DOMAIN, CIRCLE_PATTERN, 0, 0, 1.0);
glutSwapBuffers();
@@ -869,7 +873,7 @@ void animation()
draw_wave_energy(phi, psi, xy_in, scale, i);
draw_billiard_half(B_DOMAIN, CIRCLE_PATTERN, 0);
draw_billiard_half(B_DOMAIN, CIRCLE_PATTERN, 0, 0, 1.0);