forked from SPECFEM/specfem3d
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ran the code beautifier, which now removes accented letters and clean…
…s text and LaTeX files
- Loading branch information
Showing
63 changed files
with
3,204 additions
and
3,133 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
EXAMPLES/CPML_examples/homogeneous_halfspace_HEX8_acoustic_absorbing_CPML_5sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
EXAMPLES/CPML_examples/homogeneous_halfspace_HEX8_acoustic_absorbing_CPML_6sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
...PML_examples/homogeneous_halfspace_HEX8_acoustic_elastic_absorbing_CPML_5sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
...PML_examples/homogeneous_halfspace_HEX8_acoustic_elastic_absorbing_CPML_6sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
EXAMPLES/CPML_examples/homogeneous_halfspace_HEX8_elastic_absorbing_CPML_5sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
EXAMPLES/CPML_examples/homogeneous_halfspace_HEX8_elastic_absorbing_CPML_6sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
PREFIX=velocity_Z_it | ||
OUT=./movie | ||
|
||
|
||
declare -i it itmax istep | ||
|
||
|
||
istep=25 | ||
itmax=3500 #30000 | ||
|
||
|
||
it=0 | ||
|
||
while [ "$it" -le "$itmax" ] ; do | ||
|
||
if [ "$it" -lt 1000000 ]; then | ||
FICHIER=$PREFIX${it} | ||
fi; | ||
|
||
if [ "$it" -lt 100000 ]; then | ||
FICHIER=$PREFIX"0"${it} | ||
fi; | ||
|
||
if [ "$it" -lt 10000 ]; then | ||
FICHIER=$PREFIX"00"${it} | ||
fi; | ||
|
||
if [ "$it" -lt 1000 ]; then | ||
FICHIER=$PREFIX"000"${it} | ||
fi; | ||
|
||
if [ "$it" -lt 100 ]; then | ||
FICHIER=$PREFIX"0000"${it} | ||
fi; | ||
|
||
|
||
echo $FICHIER.mesh | ||
./mesh2vtu.pl -i $OUT/$FICHIER.mesh -o $FICHIER.vtu | ||
it="$it+$istep" | ||
|
||
done; | ||
|
||
echo $PREFIX | ||
|
||
mv $PREFIX* ./movie_vtu/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
EXAMPLES/homogeneous_halfspace_HEX8_elastic_absorbing_Stacey_5sides/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
2 changes: 1 addition & 1 deletion
2
EXAMPLES/homogeneous_halfspace_HEX8_elastic_no_absorbing/slices.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
0 | ||
1 | ||
2 | ||
3 | ||
3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ Subject: Re:Re: PML | |
Date: Wed, 17 Dec 2014 19:41:23 +0800 (CST) | ||
From: xiezhinan | ||
To: Dimitri Komatitsch | ||
CC: Jeroen Tromp , Matthieu Lefebvre , Ryan Modrak , Alexis Bottero , Daniel Peter , Mathilde Griveaux , Paul Cristini , Clément Durochat , Yi Wang , Vadim Monteiller | ||
CC: Jeroen Tromp , Matthieu Lefebvre , Ryan Modrak , Alexis Bottero , Daniel Peter , Mathilde Griveaux , Paul Cristini , Clement Durochat , Yi Wang , Vadim Monteiller | ||
|
||
Dear Dimitri, dear all, | ||
|
||
|
@@ -53,16 +53,16 @@ Zhinan | |
|
||
Subject: Re: PML | ||
Date: Thu, 22 Jan 2015 01:43:52 +0100 | ||
From: Dimitri Komatitsch <[email protected]> | ||
From: Dimitri Komatitsch | ||
Organization: CNRS, Marseille, France | ||
To: xiezhinan | ||
CC: Jeroen Tromp , Matthieu Lefebvre , Ryan Modrak , Alexis Bottero , Daniel Peter , Mathilde Griveaux , Paul Cristini , Clément Durochat , Yi Wang , Vadim Monteiller | ||
CC: Jeroen Tromp , Matthieu Lefebvre , Ryan Modrak , Alexis Bottero , Daniel Peter , Mathilde Griveaux , Paul Cristini , Clement Durochat , Yi Wang , Vadim Monteiller | ||
|
||
Dear Zhinan, dear all, | ||
|
||
I would add one more thing to the list (we discussed it in the Skype | ||
call of Dec 22): committing the fluid-solid boundary kernels that are | ||
currently implemented in a local version in your account of the | ||
I would add one more thing to the list (we discussed it in the Skype | ||
call of Dec 22): committing the fluid-solid boundary kernels that are | ||
currently implemented in a local version in your account of the | ||
Marseille supercomputer but not committed to Git yet. | ||
|
||
Thanks, | ||
|
@@ -146,7 +146,7 @@ going on. | |
|
||
Subject: Re: [specfem3d] Runing both PML and attenuation causes error results (#356) | ||
Date: Tue, 20 Jan 2015 23:58:21 +0100 | ||
From: Dimitri Komatitsch <[email protected]> | ||
From: Dimitri Komatitsch | ||
Organization: CNRS, Marseille, France | ||
To: geodynamics/specfem3d , specfem3d-zhang-ksu | ||
CC: Zhinan Xie | ||
|
@@ -239,7 +239,7 @@ Hi Zhinan, | |
|
||
OK, thank you very much for your answer. I suggest we proceed as you | ||
plan below, i.e. in the next few days you can start cleaning the code | ||
(please do a git pull because Clément and Yi as well as Vadim have | ||
(please do a git pull because Clement and Yi as well as Vadim have | ||
changed many things in the code) and you can start merging all your | ||
contributions from the last few months, which are not committed yet. | ||
Then, as soon as all of this is merged Vadim can have a look at how to | ||
|
@@ -305,9 +305,9 @@ On 10/28/2014 01:52 PM, xiezhinan wrote: | |
3/ add a more flexible function for scale factor and fix one error in create_mass_matrices.f90: | ||
|
||
Date: Tue, 24 Jun 2014 07:15:03 +0800 | ||
From: 谢志南 <xiezhinan1984 | ||
From: ??? <xiezhinan1984 | ||
To: Dimitri Komatitsch | ||
CC: Clément Durochat, Paul Cristini, Elliott Sales de Andrade | ||
CC: Clement Durochat, Paul Cristini, Elliott Sales de Andrade | ||
|
||
Dear Dimitri, | ||
|
||
|
@@ -396,9 +396,9 @@ Subject: Bermudez (2007) | |
Date: Sat, 29 Nov 2014 17:34:46 +0100 | ||
From: Dimitri Komatitsch | ||
Organization: CNRS, Marseille, France | ||
To: Zhinan Xie 谢志南, René Matzen, Paul Cristini | ||
To: Zhinan Xie ???, Rene Matzen, Paul Cristini | ||
|
||
Hi Zhinan and René, | ||
Hi Zhinan and Rene, | ||
|
||
What do you think of the approach of Bermudez et al (2007) to make the | ||
damping profile linear and also reach zero on the outer edge of the | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.