Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F96583959
critic_an.c
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Sat, Dec 28, 13:30
Size
1 KB
Mime Type
text/x-c
Expires
Mon, Dec 30, 13:30 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23212345
Attached To
R1448 Lenstool-HPC
critic_an.c
View Options
#include<stdio.h>
#include<math.h>
#include<fonction.h>
#include<constant.h>
#include<dimension.h>
#include<structure.h>
/****************************************************************/
/* nom: critic */
/* auteur: Jean-Paul Kneib */
/* date: 10/02/92 */
/* place: Toulouse */
/****************************************************************
* Write the ellipse parameters of the critical and radial lines
* around the lens[0].
*
* Output format :
* cr_an.dat : 1 C.x C.y aa bb theta
*
*/
void
critic_an
()
{
const
extern
struct
pot
lens
[];
FILE
*
OUT
;
double
aa
,
bb
;
int
i
=
0
;
/* ATTENTION: l'ellipticite ici est celle de la distribution de masse */
/* et non pas celle de la densite */
OUT
=
fopen
(
"cr_an.dat"
,
"w"
);
bb
=
lens
[
i
].
ct
/
sqrt
(
1.
-
2.
*
lens
[
i
].
emass
);
aa
=
lens
[
i
].
ct
/
sqrt
(
1.
+
2.
*
lens
[
i
].
emass
);
fprintf
(
OUT
,
"%d
\t
%lf
\t
%lf
\t
%lf
\t
%lf
\t
%lf
\t\n
"
,
1
,
lens
[
i
].
C
.
x
,
lens
[
i
].
C
.
y
,
aa
,
bb
,
180.
/
PI
*
lens
[
i
].
theta
);
aa
=
lens
[
i
].
cr
/
sqrt
(
1.
-
2.
/
9.
*
lens
[
i
].
emass
);
bb
=
lens
[
i
].
cr
/
sqrt
(
1.
+
2.
/
9.
*
lens
[
i
].
emass
);
fprintf
(
OUT
,
"%d
\t
%lf
\t
%lf
\t
%lf
\t
%lf
\t
%lf
\t\n
"
,
1
,
lens
[
i
].
C
.
x
,
lens
[
i
].
C
.
y
,
aa
,
bb
,
180.
/
PI
*
lens
[
i
].
theta
);
fclose
(
OUT
);
}
Event Timeline
Log In to Comment