-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPotencialMap.gp
144 lines (99 loc) · 3.06 KB
/
PotencialMap.gp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
reset
set terminal pngcairo size 1000,750 font "Helvetica,16"
set output 'Map.png'
set multiplot layout 2,2 title "Puntos de Lagrange" font ",14"
#####################################################################################
###################################General###########################################
#####################################################################################
###################################Apariencia##########################################
set xtics rotate
set xlabel 'Desplazamiento en x' rotate by 0
set ylabel 'Desplazamiento en y' rotate by 90
Cpalette
set palette negative
set size ratio -1
set grid
set pm3d
set hidden3d
set isosamples 50
set view map
unset key
unset surface
#################### Datos que puedes cambiar #########################
###################################Variables#########################################
###Masas:
inputM1
inputM2
###Distancias en x de los primeros 3 puntos
inputxA
inputxB
inputxC
###Detalle en curvas de nivel para los puntos P1, P2, P3 y P4
dP1=100#%
dP2=100#%
dP3=100#%
dP4=100#%
###Ampliacion en los puntos P1, P2, P3 y P4
aP1=100#%
aP2=100#%
aP3=100#%
aP4=100#%
#####################################################################################
################################# Fin #######################################
x1=M2/(M2+M1)
x2=x1-1
p=(x1+x2)/2
###################################Funcion#########################################
f(x,y)=x2/sqrt((x-x1)**2+y**2)-x1/sqrt((x-x2)**2+y**2)-0.5*(x**2+y**2)
#####################################################################################
###################################Multiplots########################################
#####################################################################################
######################################P1#############################################
set title 'P1'
d=7.0000000000/aP1
ls=0.1000000000/dP1
set xrange [xA-d:xA+d]
set yrange [-d:d]
pli=f(xA,0)
mli=f(xA-d,0)
li=2*abs(pli-mli)
set contour base
set cntrparam levels incremental mli-li,ls,pli+li
splot f(x,y) t 'V'
######################################P2#############################################
set title 'P2'
d=7.0000000000/aP2
ls=0.9000000000/dP2
set xrange [xB-d:xB+d]
set yrange [-d:d]
pli=f(xB,0)
mli=f(xB-d,0)
li=2*abs(pli-mli)
set contour base
set cntrparam levels incremental mli-li,ls,pli+li
splot f(x,y) t 'V'
######################################P3#############################################
set title 'P3'
d=7.0000000000/aP3
ls=0.0900000000/dP3
set xrange [xC-d:xC+d]
set yrange [-d:d]
pli=f(xC,0)
mli=f(xC-d,0)
li=2*abs(pli-mli)
set contour base
set cntrparam levels incremental mli-li,ls,pli+li
splot f(x,y) t 'V'
######################################P4 y P5#############################################
set title 'P4 y P5'
d=0.4000000000/aP4
ls=0.0001800000/dP4
set xrange [p-d:p+d]
set yrange [0.866-d:0.866+d]
pli=f(p,0.866)
mli=f(p-d,0.866)
li=2*abs(pli-mli)
set contour base
set cntrparam levels incremental mli-li,ls,pli+li
splot f(x,y) t 'V'
unset multiplot