⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 setdest.cc

📁 跑leach需要的
💻 CC
📖 第 1 页 / 共 2 页
字号:
/* * * The original code of setdest was included in ns-2.1b8a. * This file is the modified version by J. Yoon <jkyoon@eecs.umich.edu>, *	Department of EECS, University of Michigan, Ann Arbor.  * * (1) Input parameters *	<Original version> *		=> -M maximum speed (minimum speed is zero as a default) *		=> -p pause time (constant)  *		=> -n number of nodes *		=> -x x dimension of space *		=> -y y dimension of space * *	<Modified version> *		=> -s speed type (uniform, normal) *		=> -m minimum speed > 0  *		=> -M maximum speed *		=> -P pause type (constant, uniform) *		=> -p pause time (a median if uniform is chosen) *		=> -n number of nodes *		=> -x x dimension of space *		=> -y y dimension of space * * (2) In case of modified version, the steady-state speed distribution is applied to  *	the first trip to eliminate any speed decay. If pause is not zero, the first  *	trip could be either a move or a pause depending on the probabilty that the  *	first trip is a pause. After the first trip regardless of whether it is  *	a move or a pause, all subsequent speeds are determined from the given speed  *	distribution (e.g., uniform or normal). * * (3) Refer to and use scenario-generating scripts (make-scen.csh for original version,  *	make-scen-steadystate.csh for modified version). * * */extern "C" {#include <assert.h>#include <fcntl.h>#include <math.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <sys/time.h>#include <sys/types.h>#include <sys/uio.h>#include <unistd.h>#if !defined(sun)#include <err.h>#endif};#include "../../../tools/rng.h"#include "setdest.h"// #define		DEBUG#define		SANITY_CHECKS//#define		SHOW_SYMMETRIC_PAIRS#define GOD_FORMAT	"$ns_ at %.12f \"$god_ set-dist %d %d %d\"\n"#define GOD_FORMAT2	"$god_ set-dist %d %d %d\n"#define NODE_FORMAT	"$ns_ at %.12f \"$node_(%d) setdest %.12f %.12f %.12f\"\n"#define NODE_FORMAT2	"$node_(%d) setdest %.12f %.12f %.12f\n"#define NODE_FORMAT3	"$node_(%d) set %c_ %.12f\n"#define		INFINITY	0x00ffffff#define		min(x,y)	((x) < (y) ? (x) : (y))#define		max(x,y)	((x) > (y) ? (x) : (y))#define		ROUND_ERROR	1e-9#define 	PI	 	3.1415926	static int count = 0;/* ======================================================================   Function Prototypes   ====================================================================== */void		usage(char**);void		init(void);double		uniform(void);void		dumpall(void);void		ComputeW(void);void		floyd_warshall(void);void		show_diffs(void);void		show_routes(void);void		show_counters(void);/* ======================================================================   Global Variables   ====================================================================== */const double	RANGE = 250.0;	// transmitter range in metersdouble		TIME = 0.0;			// my clock;double		MAXTIME = 0.0;		// duration of simulationdouble		MAXX = 0.0;			// width of spacedouble		MAXY = 0.0;			// height of spacedouble		PAUSE = 0.0;		// pause timedouble		MAXSPEED = 0.0;		// max speeddouble		MINSPEED = 0.0;		// min speed double		SS_AVGSPEED = 0.0;	// steady-state avg speed double 		KAPPA = 0.0;		// normalizing constant double 		MEAN = 0.0;			// mean for normal speeddouble 		SIGMA = 0.0;		// std for normal speeddouble 		EXP_1_V = 0.0;		// expactation of 1/Vdouble 		EXP_R = 0.0;		// expectation of travel distance Rdouble 		PDFMAX = 0.0;		// max of pdf for rejection techniqueu_int32_t	SPEEDTYPE = 1;		// speed type (default = uniform)u_int32_t	PAUSETYPE = 1;		// pause type (default = constant)u_int32_t	VERSION = 1;		// setdest version (default = original by CMU) u_int32_t	NODES = 0;			// number of nodesu_int32_t	RouteChangeCount = 0;u_int32_t	LinkChangeCount = 0;u_int32_t	DestUnreachableCount = 0;Node		*NodeList = 0;u_int32_t	*D1 = 0;u_int32_t	*D2 = 0;/* ======================================================================   Random Number Generation   ====================================================================== */#define M		2147483647L#define INVERSE_M	((double)4.656612875e-10)char random_state[32];RNG *rng;doubleuniform(){        count++;        return rng->uniform_double() ;}/* ======================================================================   Misc Functions...   ====================================================================== *//* compute the expectation of travel distance E[R] in a rectangle */voidcompute_EXP_R(){	#define csc(x) 		(1.0/sin(x))		// csc function	#define sec(x)		(1.0/cos(x))		// sec function	#define sin2(x)		(sin(x)*sin(x))		// sin^2	#define sin3(x)		(sin2(x)*sin(x))	// sin^3	#define cos2(x)		(cos(x)*cos(x))		// cos^2	#define cos3(x)		(cos2(x)*cos(x))	// cos^3	double x = MAXX, y = MAXY;			// max x and max y	double x2 = x*x, x3 = x*x*x;			// x^2 and x^3	double y2 = y*y, y3 = y*y*y;			// y^2 and y^3	double term1 = sin(atan2(y,x)) / 2.0 / cos2(atan2(y,x));	double term2 = 0.5 * log( sec(atan2(y,x)) + y/x );	double term3 = -1.0 * x3 / y2 / 60.0 / cos3(atan2(y,x)) + 1.0/60.0 * x3 / y2;	double term4 = (term1 + term2) * x2 / 12.0 / y + term3;	double term5 = -1.0 * cos(atan2(y,x)) / 2.0 / sin2(atan2(y,x));	double term6 = 0.5 * log( csc(atan2(y,x)) - x/y );	double term7 = -1.0 * y3 / x2 / 60.0 / sin3(atan2(y,x)) + 1.0/60.0 * y3 / x2;	double term8 = -1.0 * (term5 + term6) * y2 / 12.0 / x + term7;	EXP_R = (4 * (term4 + term8)); 			// E[R]}voidusage(char **argv){	fprintf(stderr, "\nusage:\n");	fprintf(stderr,		"\n<original 1999 CMU version (version 1)>\n %s\t-v <1> -n <nodes> -p <pause time> -M <max speed>\n",		argv[0]);	fprintf(stderr,		"\t\t-t <simulation time> -x <max X> -y <max Y>\n");	fprintf(stderr,		"\nOR\n<modified 2003 U.Michigan version (version 2)>\n %s\t-v <2> -n <nodes> -s <speed type> -m <min speed> -M <max speed>\n",		argv[0]);	fprintf(stderr,		"\t\t-t <simulation time> -P <pause type> -p <pause time> -x <max X> -y <max Y>\n");	fprintf(stderr,		"\t\t(Refer to the script files make-scen.csh and make-scen-steadystate.csh for detail.) \n\n");}voidinit(){	/*	 * Initialized the Random Number Generation	 */	/* 	This part of init() is commented out and is replaced by more	portable RNG (random number generator class of ns) functions.		struct timeval tp;	int fd, seed, bytes;	if((fd = open("/dev/random", O_RDONLY)) < 0) {		perror("open");		exit(1);	}	if((bytes = read(fd, random_state, sizeof(random_state))) < 0) {		perror("read");		exit(1);	}	close(fd);	fprintf(stderr, "*** read %d bytes from /dev/random\n", bytes);	if(bytes != sizeof(random_state)) {	  fprintf(stderr,"Not enough randomness. Reading `.rand_state'\n");	  if((fd = open(".rand_state", O_RDONLY)) < 0) {	    perror("open .rand_state");	    exit(1);	  }	  if((bytes = read(fd, random_state, sizeof(random_state))) < 0) {	    perror("reading .rand_state");	    exit(1);	  }	  close(fd);	}         if(gettimeofday(&tp, 0) < 0) {		perror("gettimeofday");		exit(1);	}	seed = (tp.tv_sec  >> 12 ) ^ tp.tv_usec;        (void) initstate(seed, random_state, bytes & 0xf8);*/	/*	 * Allocate memory for globals	 */	NodeList = new Node[NODES];	if(NodeList == 0) {		perror("new");		exit(1);	}	D1 = new u_int32_t[NODES * NODES];	if(D1 == 0) {		perror("new");		exit(1);	}	memset(D1, '\xff', sizeof(u_int32_t) * NODES * NODES);	D2 = new u_int32_t[NODES * NODES];	if(D2 == 0) {		perror("new");		exit(1);	}	memset(D2, '\xff', sizeof(u_int32_t) * NODES * NODES);}extern "C" char *optarg;intmain(int argc, char **argv){	char ch;	while ((ch = getopt(argc, argv, "v:n:s:m:M:t:P:p:x:y:i:o:")) != EOF) {       		switch (ch) { 				case 'v':		  VERSION = atoi(optarg);		  break;		case 'n':		  NODES = atoi(optarg);		  break;		case 's':			SPEEDTYPE = atoi(optarg);				break;		case 'm':			MINSPEED = atof(optarg);				break;		case 'M':			MAXSPEED = atof(optarg);			break;		case 't':			MAXTIME = atof(optarg);			break;		case 'P':			PAUSETYPE = atoi(optarg);				break;		case 'p':			PAUSE = atof(optarg);			break;		case 'x':			MAXX = atof(optarg);			break;		case 'y':			MAXY = atof(optarg);			break;		default:			usage(argv);			exit(1);		}	}	if(MAXX == 0.0 || MAXY == 0.0 || NODES == 0 || MAXTIME == 0.0) {		usage(argv);		exit(1);	}		/* specify the version */	if (VERSION != 1 && VERSION != 2) {	  printf("Please specify the setdest version you want to use. For original 1999 CMU version use 1; For modified 2003 U.Michigan version use 2\n");	  exit(1);	}	if (VERSION == 2 && MINSPEED <= 0) {	  usage(argv);	  exit(1);	} else if (VERSION == 1 && MINSPEED > 0) {	  usage(argv);	  exit(1);	}	// The more portable solution for random number generation	rng = new RNG;	rng->set_seed(RNG::HEURISTIC_SEED_SOURCE); 	/**************************************************************************************** 	 * Steady-state avg speed and distribution depending on the initial distirbutions given	 ****************************************************************************************/		/* original setdest */		if (VERSION == 1) {			fprintf(stdout, "#\n# nodes: %d, pause: %.2f, max speed: %.2f, max x: %.2f, max y: %.2f\n#\n",			NODES, PAUSE, MAXSPEED, MAXX, MAXY);	}		/* modified version */	else if (VERSION == 2) {		/* compute the expectation of travel distance in a rectangle */		compute_EXP_R();		/* uniform speed from min to max */		if (SPEEDTYPE == 1) {			EXP_1_V = log(MAXSPEED/MINSPEED) / (MAXSPEED - MINSPEED);	// E[1/V]			SS_AVGSPEED = EXP_R / (EXP_1_V*EXP_R + PAUSE);				// steady-state average speed			PDFMAX = 1/MINSPEED*EXP_R / (EXP_1_V*EXP_R + PAUSE) / (MAXSPEED-MINSPEED);	// max of pdf for rejection technique		}				/* normal speed clipped from min to max */		else if (SPEEDTYPE == 2) {			int bin_no = 10000;									// the number of bins for summation			double delta = (MAXSPEED - MINSPEED)/bin_no; 		// width of each bin 			int i;			double acc_k, acc_e, square, temp_v;			MEAN = (MAXSPEED + MINSPEED)/2.0;					// means for normal dist.			SIGMA = (MAXSPEED - MINSPEED)/4.0;					// std for normal dist.			/* computing a normalizing constant KAPPA, E[1/V], and pdf max */			KAPPA = 0.0;			EXP_1_V = 0.0;			PDFMAX = 0.0;			/* numerical integrals */			for (i=0; i<bin_no; ++i) {				temp_v = MINSPEED + i*delta;		// ith v from min speed				square = (temp_v - MEAN)*(temp_v - MEAN)/SIGMA/SIGMA;				acc_k = 1.0/sqrt(2.0*PI*SIGMA*SIGMA)*exp(-0.5*square);				KAPPA += (acc_k*delta);				// summing up the area of rectangle				acc_e = 1.0/temp_v/sqrt(2.0*PI*SIGMA*SIGMA)*exp(-0.5*square);				EXP_1_V += (acc_e*delta);			// summing up for the denominator of pdf					/* find a max of pdf */				if (PDFMAX < acc_e) PDFMAX = acc_e;			}			EXP_1_V /= KAPPA;						// normalizing			SS_AVGSPEED = EXP_R / (EXP_1_V*EXP_R + PAUSE);			// steady-state average speed			PDFMAX = EXP_R*PDFMAX/KAPPA / (EXP_1_V*EXP_R + PAUSE);	// max of pdf for rejection technique		}		/* other types of speed for future use */		else			;			fprintf(stdout, "#\n# nodes: %d, speed type: %d, min speed: %.2f, max speed: %.2f\n# avg speed: %.2f, pause type: %d, pause: %.2f, max x: %.2f, max y: %.2f\n#\n",			NODES , SPEEDTYPE, MINSPEED, MAXSPEED, SS_AVGSPEED, PAUSETYPE, PAUSE, MAXX, MAXY);	} 		init();	while(TIME <= MAXTIME) {		double nexttime = 0.0;		u_int32_t i;		for(i = 0; i < NODES; i++) {			NodeList[i].Update();		}		for(i = 0; i < NODES; i++) {			NodeList[i].UpdateNeighbors();		}		for(i = 0; i < NODES; i++) {			Node *n = &NodeList[i];				if(n->time_transition > 0.0) {				if(nexttime == 0.0)					nexttime = n->time_transition;				else					nexttime = min(nexttime, n->time_transition);			}			if(n->time_arrival > 0.0) {				if(nexttime == 0.0)					nexttime = n->time_arrival;				else					nexttime = min(nexttime, n->time_arrival);			}		}		floyd_warshall();#ifdef DEBUG		show_routes();#endif	 	show_diffs();#ifdef DEBUG		dumpall();#endif		assert(nexttime > TIME + ROUND_ERROR);		TIME = nexttime;	}	show_counters();	int of;	if ((of = open(".rand_state",O_WRONLY | O_TRUNC | O_CREAT, 0777)) < 0) {	  fprintf(stderr, "open rand state\n");	  exit(-1);	  }	for (unsigned int i = 0; i < sizeof(random_state); i++)          random_state[i] = 0xff & (int) (uniform() * 256);	if (write(of,random_state, sizeof(random_state)) < 0) {	  fprintf(stderr, "writing rand state\n");	  exit(-1);	  }	close(of);}/* ======================================================================   Node Class Functions   ====================================================================== */u_int32_t Node::NodeIndex = 0;Node::Node(){	u_int32_t i;	index = NodeIndex++;	//if(index == 0)	//	return;	route_changes = 0;    link_changes = 0;    /*******************************************************************************	 * Determine if the first trip is a pause or a move with the steady-state pdf     *******************************************************************************/	/* original version */	if (VERSION == 1) {			time_arrival = TIME + PAUSE;			// constant pause	}	/* modified version */ 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -