-
Notifications
You must be signed in to change notification settings - Fork 1
/
ProyectoCM2020.c
277 lines (181 loc) · 6.25 KB
/
ProyectoCM2020.c
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int n = 100; //número de particulas
float particula[4][n]; //: particula[0][i]: coordenada "x" de la particula i. particula[1][i]: coordenada "y" de la particula i.
//: particula[2][i]: velocidad "x" de la particula i. particula[3][i]: velocidad "y" de la particula i.
float auxparticula[4][n];
//Definición de las parámetros a variar
float e=2; //valor de epsilon
float s=0.1; //valor de sigma
float t=30; //tiempo en el que se moverán las partículas
int l=1000;
float dt=0.03; //valor del intervalo de tiempo t/l
float fx(float xi, float yi, float xj, float yj); //fuerza en "x" que experimenta la partícula i debido a la partícula j
float fy(float xi, float yi, float xj, float yj);//fuerza en "y" que experimenta la partícula i debido a la partícula j
int main(){
int nij = sqrt(n);
//Asignamos posiciones iniciales
int cont = 0;
for(int i = 0; i < nij ; i++)
{
for(int j = 0; j < nij ; j++)
{
particula[0][cont] = i;
particula[1][cont] = j;
cont = cont + 1;
}
}
//Asignamos velocidades iniciales
for(int i = 2; i < 4; i++)
{
for(int j = 0; j < n; j++)
{
particula[i][j] = 0;
}
}
//imprimimos posiciones iniciales
FILE *gg = fopen("datos_iniciales","wt");
for (int j = 0; j < n; j++)
{
for(int i=0; i<2; i++)
{
fprintf(gg, "%f %f\n", particula[0][j], particula[1][j]);
}
}
fclose(gg);
FILE *flujo = fopen("script","wt");
fprintf(flujo, "set xrange [-20:20]\n");
fprintf(flujo, "set yrange [-20:20]\n");
fprintf(flujo, "set terminal png \n");
fprintf(flujo, "set output 'ini.png' \n");
fprintf(flujo, "plot 'datos_iniciales' u 1:2 with points pt 7 ps 1 \n");
//Se cierra el archivo.
fclose(flujo);
system("gnuplot -p script");
//Se ejecuta l-1 veces el algoritmo para asi encontrar las posiciones y velocidades en el instante t.
for (int q = 0; q < l; q++)
{
//POSICIONES
//para x:
for(int j = 0; j < n; j++)
{
//Se calcula la fuerza total en x sobre la particula j
float fxt=0;
for (int g = 0; g < n; g++)
{
if (g==j)
{
}else
{
fxt = fxt + fx(particula[0][j],particula[1][j],particula[0][g],particula[1][g]);
}
}
//nueva posiccion en x de la particula j.
auxparticula[0][j] = particula[0][j] + (dt*(particula[2][j])) +((1.0/2.0)*dt*dt*(fxt));
}
//para y:
for(int j = 0; j < n; j++)
{
//Se calcula la fuerza total en y sobre la particula j
float fyt=0;
for (int g = 0; g < n; g++)
{
if (g==j)
{
}else
{
fyt = fyt + fy(particula[0][j],particula[1][j],particula[0][g],particula[1][g]);
}
}
//nueva posiccion en y de la particula j.
auxparticula[1][j] = particula[1][j] + (dt*(particula[3][j])) +((1.0/2.0)*dt*dt*(fyt));
}
//VELOCIDADES
//para x:
for(int j = 0; j < n; j++)
{
//Se calcula la fuerza total en x sobre la particula j
float fxt=0;
for (int g = 0; g < n; g++)
{
if (g==j)
{
}else
{
fxt = fxt + fx(particula[0][j],particula[1][j],particula[0][g],particula[1][g]);
}
}
//nueva velocidad en x de la particula j.
auxparticula[2][j] = particula[2][j] + (dt*(fxt)) ;
if (10<= particula[0][j] || particula[0][j]<=0){
auxparticula[2][j] = -auxparticula[2][j];
}
}
//para y:
for(int j = 0; j < n; j++)
{
//Se calcula la fuerza total en y sobre la particula j
float fyt=0;
for (int g = 0; g < n; g++)
{
if (g==j)
{
}else
{
fyt = fyt + fy(particula[0][j],particula[1][j],particula[0][g],particula[1][g]);
}
}
//nueva velocidad en y de la particula j.
auxparticula[3][j] = particula[3][j] + (dt*(fyt)) ;
if (10<= particula[1][j] || particula[1][j]<=0){
auxparticula[3][j] = -auxparticula[3][j];
}
}
//Para este instante, el array "auxparticula[][]" contiene ya la informacion de todas las nuevas posiciones y velocidades.
//Ahora que ya no importa si se modifica el array "particula[][]" pasaremos toda la informacion del array "auxparticula[][]"
//al array "particula[][]" (antes era preciso que no se modificara "particula[][]" porque este se tenia que usar para todos los calculos)
//Asignamos nuevas posiciones iniciales
for(int i = 0; i < 2; i++)
{
for(int j = 0; j < n; j++)
{
particula[i][j] = auxparticula[i][j];
}
}
//Asignamos nuevas velocidades iniciales
for(int i = 2; i < 4; i++)
{
for(int j = 0; j < n; j++)
{
particula[i][j] = auxparticula[i][j];
}
}
FILE *gg = fopen("datos_iniciales","wt");
for (int j = 0; j < n; j++)
{
for(int i=0; i<2; i++)
{
fprintf(gg, "%f %f\n", particula[0][j], particula[1][j]);
}
}
fclose(gg);
FILE *flujo = fopen("script","wt");
fprintf(flujo, "set xrange [-20:20]\n");
fprintf(flujo, "set yrange [-20:20]\n");
fprintf(flujo, "set terminal png \n");
fprintf(flujo, "set output 'ini%i.png' \n",q);
fprintf(flujo, "plot 'datos_iniciales' u 1:2 with points pt 7 ps 1\n");
//Se cierra el archivo.
fclose(flujo);
system("gnuplot -p script");
}
//Esto ejecutará el comando entre comillas en la consola por lo tanto gnuplot ejecutará el script (:
}
//declaración de las funciones fx y fy
float fx(float xi, float yi, float xj, float yj){
return 4.0*e*(((12.0*(pow(s,12)))/(pow((pow(xi-xj,2))+(pow(yi-yj,2)),7)))-(((6.0*(pow(s,6)))/(pow((pow(xi-xj,2))+(pow(yi-yj,2)),4)))))*(xi-xj);
}
float fy(float xi, float yi, float xj, float yj){
return 4.0*e*(((12.0*(pow(s,12)))/(pow((pow(xi-xj,2))+(pow(yi-yj,2)),7)))-(((6.0*(pow(s,6)))/(pow((pow(xi-xj,2))+(pow(yi-yj,2)),4)))))*(yi-yj);
}