-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhot_plate_serial.c
167 lines (143 loc) · 2.75 KB
/
hot_plate_serial.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
/*
* lab1_parallel.c
*
* Created on: Jan 13, 2014
* Author: rnakade
*/
#include<stdio.h>
#include<stdlib.h>
#include<math.h>
#include<sys/time.h>
#define MAXROW 1024
#define MAXCOL 1024
float array1[MAXROW][MAXCOL];
float array2[MAXROW][MAXCOL];
void initialize_array(float arr[][MAXCOL]);
void calculate_new_values(float arr1[][MAXCOL],float arr2[][MAXCOL]);
int check_for_convergence(float arr[][MAXCOL]);
double when();
int main()
{
int iter = 0;
int status1=1;
int status2=1;
int hot_cells=0;
double start_time;
double end_time;
start_time = when();
initialize_array(array1);
initialize_array(array2);
while(1){
calculate_new_values(array2,array1);
status1 = check_for_convergence(array2);
iter++;
if(status1 == 0) break;
calculate_new_values(array1,array2);
status2 = check_for_convergence(array1);
iter++;
if(status2 == 0) break;
}
if(status1 == 0)
{
for(int i=0;i<MAXROW;i++)
{
for(int j=0; j<MAXCOL; j++)
{
if(array2[i][j]>50) hot_cells++;
}
}
}
else
{
for(int i=0;i<MAXROW;i++)
{
for(int j=0; j<MAXCOL; j++)
{
if(array1[i][j]>50) hot_cells++;
}
}
}
end_time = when();
printf("no of iterations = %d\n",iter);
printf("No. of cells with temperature greater than 50 is %d\n",hot_cells);
printf("Total execution time = %f\n", end_time-start_time);
return 1;
}
void initialize_array(float arr[][MAXCOL])
{
int i,j;
for(i=0;i<MAXROW;i++)
{
for(j=0;j<MAXCOL;j++)
{
if(i==0 || j==0 || j==(MAXCOL-1))
{
arr[i][j] = 0.0;
}
else if (i==MAXROW-1)
{
arr[i][j] = 100.0;
}
else if (i==400 && j<=330)
{
arr[i][j] = 100.0;
}
else if (i==200 && j ==500)
{
arr[i][j] = 100.0;
}
else
{
arr[i][j] = 50.0;
}
}
}
}
void calculate_new_values(float arr2[][MAXCOL],float arr1[][MAXCOL])
{
for (int i=0; i<MAXROW; i++)
{
for(int j=0; j< MAXCOL; j++)
{
if( i==0 || (i==MAXROW-1) || j==0 || j== (MAXCOL-1) || (i==400 && j<=330) || (i==200 && j ==500))
{
//skip
}
else
{
arr2[i][j] = (arr1[i+1][j] + arr1[i-1][j] + arr1[i][j+1] + arr1[i][j-1] + (4 * arr1[i][j]))/8.0;
}
}
}
}
int check_for_convergence(float arr[][MAXCOL])
{
float convergence;
int status=0;
for(int i=0;i<MAXROW;i++)
{
for(int j=0;j<MAXCOL;j++)
{
if( i==0 || (i==MAXROW-1) || j==0 || j== (MAXCOL-1) || (i==400 && j<=330) || (i==200 && j ==500))
{
//skip
}
else
{
convergence = arr[i][j]- ((arr[i+1][j] + arr[i-1][j] + arr[i][j+1] + arr[i][j-1])/4.0 );
if(fabs(convergence) > 0.1)
{
status = 1;
return status;
}
}
}
}
return status;
}
double when()
{
struct timeval tp;
gettimeofday(&tp, NULL);
return ((double) tp.tv_sec + (double) tp.tv_usec * 1e-6);
}