first part and skeletton of growthrate thread
This commit is contained in:
parent
33115049f6
commit
7d024ff384
39
Code-C/growthrate.c
Normal file
39
Code-C/growthrate.c
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
#include "average.h"
|
||||||
|
#include "getArray.h"
|
||||||
|
#include "fileGestion.h"
|
||||||
|
#include "initialParameters.h"
|
||||||
|
#include "queue.h"
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief realize the growthRate calcul
|
||||||
|
*
|
||||||
|
* @param p array with all the values that will be used for the calcul
|
||||||
|
* @param powerArray array where results are stocked
|
||||||
|
*/
|
||||||
|
void growthRateCalculation(long **p, double powerArray[]){
|
||||||
|
for(int i = 1; i < nCol; i++){
|
||||||
|
int j = 0;
|
||||||
|
powerArray[i] = 0;
|
||||||
|
while(j < nRow-1){
|
||||||
|
double aire = ( pow(p[j][i],2) + pow(p[j+1][i],2) ) / 2 * period;
|
||||||
|
powerArray[i] += aire;
|
||||||
|
j++;
|
||||||
|
}
|
||||||
|
powerArray[i] *= invTimeBandWidth;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief function that realize all the action to write one lign in the file growthRateData.csv
|
||||||
|
*
|
||||||
|
* @param rawDataFileName name of the raw data file to use to realize the calcul
|
||||||
|
*/
|
||||||
|
void growthRate(char* rawDataFileName){
|
||||||
|
long **p = getRawDataArray(rawDataFileName), ;
|
||||||
|
double gRate[nCol -1];
|
||||||
|
if(p !=NULL){
|
||||||
|
growthRateCalculation(p,gRate);
|
||||||
|
appendDataInFile("averageData.csv",aver,nCol-1);
|
||||||
|
freeArray(p,nRow);
|
||||||
|
}
|
||||||
|
}
|
4
Code-C/growthrate.h
Normal file
4
Code-C/growthrate.h
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#include <math.h>
|
||||||
|
#include <stdbool.h>
|
||||||
|
|
||||||
|
void growthRate(char* rawDataFileName);
|
BIN
Code-C/main
BIN
Code-C/main
Binary file not shown.
|
@ -61,6 +61,19 @@ void *threadCalculBoth(void *vargp){
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void *threadGrowthRate(void *vargp){
|
||||||
|
Pqueue rawDataQueue = firstRawDataQueue;
|
||||||
|
char* fileName;
|
||||||
|
while(rawDataWriteFlag){
|
||||||
|
while(queueGetNextE(rawDataQueue) != NULL){
|
||||||
|
rawDataQueue = queueGetNextE(rawDataQueue);
|
||||||
|
fileName = queueGetTabChar(rawDataQueue);
|
||||||
|
GrowthRate(fileName);
|
||||||
|
remove(fileName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
int main(int argc , char** argv){
|
int main(int argc , char** argv){
|
||||||
|
|
||||||
|
|
|
@ -30,7 +30,7 @@ void powerCalculation(long **p, double powerArray[]){
|
||||||
* @param N number of rows in the file
|
* @param N number of rows in the file
|
||||||
* @param M number of columns in the file
|
* @param M number of columns in the file
|
||||||
*/
|
*/
|
||||||
void power(char* rawDataFileName){
|
double * power(char* rawDataFileName){
|
||||||
long **p = getRawDataArray(rawDataFileName);
|
long **p = getRawDataArray(rawDataFileName);
|
||||||
double pw[nCol-1];
|
double pw[nCol-1];
|
||||||
if(p !=NULL){
|
if(p !=NULL){
|
||||||
|
@ -38,4 +38,5 @@ void power(char* rawDataFileName){
|
||||||
appendDataInFile("powerData.csv",pw,nCol-1);
|
appendDataInFile("powerData.csv",pw,nCol-1);
|
||||||
freeArray(p,nRow);
|
freeArray(p,nRow);
|
||||||
}
|
}
|
||||||
|
return pw;
|
||||||
}
|
}
|
Loading…
Reference in a new issue