nns.c  1.0.1
Nanowire Network simulator
measures.h
Go to the documentation of this file.
1 
15 #ifndef MEASURES_H
16 #define MEASURES_H
17 
18 #include "device/network.h"
19 #include "device/component.h"
20 
35 double resistive_distance(
36  const network_state ns,
37  const connected_component cc,
38  int a,
39  int b
40 );
41 
42 #endif /* MEASURES_H */
Defines the structure and operations for connected components in a Nanowire Network.
double resistive_distance(const network_state ns, const connected_component cc, int a, int b)
Calculate the resistance distance between two points of a Nanowire Network Connected Component.
Definition: measures.c:7
Defines the structures and functions used to model and simulate the topology and electrical state of ...
Connected component of the Nanowire Network. It contains all the information needed to identify the n...
Definition: component.h:24
Electrical state of the Nanowire Network. It contains the varying values of the junctions and the vol...
Definition: network.h:47