Test Scheduling for Circuits in Micron to Deep Submicron Technologies

Size: px
Start display at page:

Download "Test Scheduling for Circuits in Micron to Deep Submicron Technologies"

Transcription

1 Test Scheduling for Circuits in Micron to Deep Submicron Technologies Chunhua Yao, Kewal K. Saluja, Parameswaran Ramanathan Department of Electrical and Computer Engineering, University of Wisconsin-Madison 1415 Engineering Drive, Madison,WI Abstract We discuss the test scheduling problem in this paper. We first provide a historical perspective of the original test scheduling formulation that dealt only with resource conflicts, followed by the consideration of power constraint test scheduling. We then move on to the recent formulations which include dealing with thermal constraint. We explain solutions, their limitations and the challenges that remain. With the emergence of on-chip sensors, in future it may be possible to leverage the use of such sensors to arrive at more efficient schedules. The paper explains these new opportunities and suggests research directions. This paper also contains an exhaustive list of references that may help the researchers and practitioners dealing with this problem. I. INTRODUCTION A major objective of the research in Very-Large-Scale Integration (VLSI) circuits testing is to reduce the total test time thus the test cost. Test parallelism is one of the main techniques to shorten the test time. However, during the testing of a complex integrated circuit (IC), digital board, or system, not all tests may be applied at the same time due to constraints of the circuit and the test. The test scheduling problem is to minimize the total test time while meeting all the constraints. The test scheduling problem can be described as follows: A test set S, consisting of n tests t i, i = 1 to n, needs to be applied to a device under test. Each test t i has 1) test length l i, which often is related to the number of test vectors in test t i, 2) test power consumption P i, which indicates the power consumption when test t i alone is applied to the device, 3) test compatibility with the other tests in the test set S. A test t i is compatible with test t j if there is no resource conflict between t i and t j and they can be applied to the device simultaneously. The most general formulation of the test scheduling problem is to find a test schedule such that: i) The total test application time is minimized. Total test application time is defined as the earliest time at which all tests have completed. ii) There is no test resource conflict between any two simultaneously running tests. iii) The total power consumption of the device at all times is smaller than the power constraint, P max. iv) The temperature at every location in the device at all times is smaller than the temperature constraint, T max. Test scheduling problem has been addressed for over twenty-five years and was developed in three stages according to the constraints being considered. Figure 1 shows a history timeline of the research in test scheduling problem. Test resource conflict was the only concern of the original test scheduling problem. With scaling of technology and increasing design sizes, power consumption during test and test data volume have grown dramatically. The power-aware test scheduling problem considers both test power consumption budget of the entire chip and also the test resource conflicts. Under the deep submicron technologies, the dramatic increase in power density can result in the chip temperatures exceeding the operating temperature limit. The thermal-aware test scheduling problem considers the test resource conflicts, the power constraint, and the temperature constraint. Resource Constrained Power Constrained Thermal Constrained Fig. 1. History of test scheduling problem Based on different scheduling schemes, test scheduling techniques can also be divided into the following three categories, as shown in Figure 2: i) Session-based test scheduling ii) Sessionless test scheduling with run-to-completion iii) Sessionless test scheduling with preemptive testing a) Session-based schedule b) Sessionless schedule Fig. 2. Test scheduling techniques categorization c) Preemptive schedule Early test session based test scheduling techniques resulted in long test time due to unnecessary idle time. Most of the recent test scheduling methods use sessionless scheduling schemes as it reduces total test application time. Preemptive testing can potentially decrease the test time but it requires preemption overhead and not all tests may be preemptable. The rest of the paper is organized as follows: Section II reviews resource constrained test scheduling. Section III describes power constrained test scheduling and Section IV explains thermal constrained static test scheduling. Sensorbased test scheduling can provide dynamic solution and it is discussed in Section V. Future directions are suggested in Section VI.

2 II. RESOURCE CONSTRAINED TEST SCHEDULING Test resource conflict was the only concern of the test scheduling problem when it was originally addressed [1]-[11]. Sharing of test resources, such as pattern generator, response compactor, test paths cause test resource conflicts. A number of scenarios are possible for core testing at the system level. The embedded cores in an SoC or multi-core system may be tested using 1) external testing 2) Built-in Self-Test (BIST) or a combination of the two methods. For external testing, the test buses that are used for test access may be shared among multiple cores. If BIST is used, the core user may design BIST logic that is shared by multiple cores to save area overhead. A core based system is shown in Figure 3. It consists of a shared external bus and six cores. Some cores share the same BIST logic, such as core 4 and core 5, and it is said that they have test resource conflict and can not be scheduled to test simultaneously. Fig. 3. An example of core based system The test scheduling problem with resource constraints has been proven to be equivalent to the open shop scheduling problem and is NP-complete. In the early test scheduling paper by Kime et al. [1], they adopted the algorithms from graph theory to solve the test scheduling problem. Firstly, a test compatibility (or incompatibility) graph (TCG) of the test resource is constructed. In the graph, each node represents a test. An edge between two nodes in a compatibility graph shows that the two tests have no resource conflict and can be run concurrently. An example of test compatibility graph is shown in Figure 4. a recent work Sugihara et al. [10] formulated the resource constrained test scheduling as a combinatorial optimization problem and then solved it using a heuristic method. In the original test scheduling problem with only resource conflict, the term test session is defined as a subset of the test set S such that all the tests in the test session are compatible and can be applied to the device at the same time. The test length of a test session is defined as the maximum test length among all the tests in that test session and the total test application time of the test set S is defined as the latest completion time among all test sessions. The major drawback of test session based test scheduling is that it only suits for the tests with equal length. Test session based scheduling assumes the next test session can start only after the previous entire test session is completed. In the case that the test length of each individual test in the test session is unequal, no new test can be scheduled even when there are tests in the test session that have completed. The advantage of session-based test scheduling is its simple test control logic but the obvious disadvantage is its longer total test time due to unnecessary large idle time. As a result, most of the recent test scheduling methods adopt the sessionless schemes. III. POWER CONSTRAINED TEST SCHEDULING Continued scaling of IC technology has resulted in substantial increase in the power densities. For example, the recent International Technology Roadmap for Semiconductors (ITRS) projects an increase in power density from about 0.57 W/mm 2 in 2007 to over 1.19 W/mm 2 by Power consumption in test mode are of even more concern as compared to normal mode because testing typically involves large switching activities. In particular, when several modules in a System-on- Chip (SoC) or in a multi-core system are tested simultaneously, the total power consumption may exceed design limits. In the deep submicron era, the situation becomes worse because there is leakage power consumption even by the idle cores. The power-aware test scheduling problem considers both test power consumption budget of the entire chip and also the test resource conflicts [12]-[74]. A set of tests cannot be scheduled together if the sum of their test power consumption exceeds the power consumption limit of the chip, even if there is no test resource conflict among them. Fig. 4. An example of test compatibility graph The clique cover heuristic is used to solve the scheduling problem based on the constructed graph. A clique is a maximal complete subgraph of a graph. In the example, (t 1,t 3,t 4 ) and (t 1,t 3,t 5 ) are two cliques in the graph. The clique cover problem is to cover all nodes by minimum number of cliques. One test scheduling solution of the example graph is {(t 1,t 3,t 4 ),(t 5 ),(t 2,t 6 )}. Besides clique cover heuristic, other graph-based algorithms, such as graph coloring, have also been used to solve the resource constrained problem. In Fig. 5. An example test compatibility graph with power information Graph-based algorithms are still popular to solve the power constrained test scheduling problem. Chou et al. [12][13] constructed test compatibility graph with power information, as shown in Figure 5. In the figure, each test t i is associated

3 with a test power P(t i ) and test length l(t i ). They divided the problem into equal test length scheduling and unequal test length scheduling and used the minimum cover table approach to find an optimum or heuristic driven schedule of power compatible tests. Rectangle (or bin) packing heuristic is another popular approach adopted to solve power constrained test scheduling problem [29][31][36]. In the rectangle packing formulation, each test is formulated into a rectangle such that the length of rectangle represents the test length of the test and the height of the rectangle represents the test power of the test, as shown in Figure 6. In the figure, the x-axis is the test time and the y- axis is the test power consumption. The test schedule is found by packing all the tests (bins) under the power limit line. In addition, we can see that this is a sessionless test scheduling scheme which reduces unnecessary idle time. Fig. 6. Rectangle packing heuristic for power constrained test scheduling Substantial research has been done to address the test scheduling problem under power constraint. Iyengar and Chakrabarty et al. discussed precedence-based, preemptive, and power constrained test scheduling [20] and formulated it into a mixed-integer linear programming (MILP) [26]. Test scheduling schemes using simulated annealing [34], genetic [60], and ant colony [67] algorithms were developed. In SoC and Network-on-Chip (NoC) test, test scheduling is often combined with test wrapper and test access mechanism (TAM) optimization [28][66][73]. Test scheduling for chips using multi-clock domain [54], multi-supply and multi-voltage [64] have also been explored. Defect-aware test scheduling in an abort-on-fail environment was also developed [23][48]. Most of the power-aware test scheduling schemes assume uniform power consumption during the lifetime of each individual test. However, the power consumption for a test varies in every clock cycle in reality. The uniform power consumption value can be either the maximum power consumption or the average power consumption of the test. This assumption works well under a loose power constraint. However, with the sharply increased power density and tighter power constraint, a more realistic model is needed. Recent works have considered the actual power consumption in every test cycle within each individual test [55]. In our recent research [88], we also include the leakage and wakeup power consumption of idle cores in the power-aware test scheduling problem. By using the cycle-accurate power model, each test will have a power profile which contains the test power at each test cycle. Comparing with the uniform power model in which each test only associates with one constant power value, the power constrained test scheduling problem becomes much more complex because the power constraint needs to be checked at each test cycle. IV. THERMAL-AWARE STATIC TEST SCHEDULING Higher power densities lead to increase in operating temperatures of the devices. Increases in operating temperature adversely affect device reliability and performance. For instance, transistor reliability decreases exponentially with an increase in its operating temperature. It has been argued that o C increase in operating temperature can cause a factor of two reduction in device lifetime. Furthermore, since electron mobility decreases with increase in temperature, there is a corresponding increase in gate delays and thus a commensurate decrease in circuit performance. Leakage power also increases with temperature; a 30 o C increase in operating temperature is expected to increase leakage current by about 30%. Overheating can also lead to timing errors during the testing process, resulting in yield loss. Industry-accepted maximum operating temperatures exist for most types of packaged ICs. However, the solution of the power constrained test scheduling problem can not guarantee that the test schedule is thermal safe. As a result, several recent papers have addressed the thermal-aware test scheduling problem which considers the test resource conflicts, the power consumption constraint, and the temperature constraint [75]-[93]. As an example, in Figure 7, the solid line shows the thermal profile for an example power-aware test schedule in which the highest temperature exceed the temperature limit 100 o C. The dash line in Figure 7 shows the thermal profile of a thermal-aware test schedule which satisfies the thermal constraint. Fig. 7. e ( O C ) Temperature Temperature profile for power aware test schedule Temperature profile for thermal aware test schedule Test time Thermal profile for power- and thermal- aware test scheduling Rosinger et al. [75] addressed this problem and proposed a method for generating thermal-safe test schedules. In their later work [79], they adopted the clique cover algorithm to find an initial test schedule meeting resource and power constraints, then eliminated the cliques which violate the temperature constraint by running thermal simulations. They also proposed a thermo-resistance model to approximately and quickly compute the thermal profile of the chip. Liu et al. [76] proposed a thermal-aware test scheduling scheme based on rectangle packing heuristic and also a scheme to spread the heat more evenly over the chip and reduce hot spots. He et al. [78] assumed that running an individual long test will exceed the temperature constraint so they proposed a test set partitioning and interleaving technique and employed constraint logic programming (CLP) to generate thermal-aware

4 test schedules. In their later work [87], they proposed a heuristic which also took into consideration of the thermal impact on neighboring modules. Yu et al. [82] presented a thermal-safe TAM and Wrapper co-design methodology for SoCs while optimizing the test schedule. Bild et al. [84] developed an optimal MILP formulation for the thermal-aware test scheduling problem. They also proposed a seed-based clustering test scheduling heuristic with a phased steady-state thermal model to reduce the thermal simulation time. The complexity of thermal simulation has become a bottleneck of the thermal-aware test scheduling problem. Two common ways to perform thermal simulation are: 1) Invoke thermal simulation tools. The advantage of this method is the accuracy but the obvious shortcoming is the execution time. 2) Develop simplified thermal model. This method can integrate the thermal simulation into the test scheduling algorithm and reduce the entire execution time. However, those models are not very accurate and will affect the performance of the thermal-aware test scheduling. The popular model used in thermal simulation is RC model, which is well known as a linear model. In our recent research [88][89][92], we exploit a method to compute the thermal profile rapidly and accurately using the superposition principle. By using the superposition principle, the thermal simulation tool is run only once at the beginning and then the computation of thermal profile becomes simple arithmetic operations, which significantly reduce the execution time of thermal simulation. We also propose a test scheduling algorithm that allows tests to start at arbitrary time along with a test partition based method to further reduce the total test time of the test schedule. V. SENSOR-BASED DYNAMIC TEST SCHEDULING IC manufacturers are researching to integrate thermal sensors into ICs and locate them strategically to monitor temperature of the IC. At present the number of such devices is limited but it is certain to grow. In particular it is expected that large number of low cost sensing devices will be integrated in future generation ICs. Traditional test schedules based on thermal simulations are often static. These static schedules often overor under- estimate the chip temperature and result in longer test time or may exceed of the temperature constraint. With the help of on-chip thermal sensors which can provide actual IC temperature, a dynamic run-time thermal aware test scheduling is possible. In our recent research [93], we proposed a dynamic thermalaware test scheduling scheme guided by the on-chip thermal sensors. Based on the fact that temperature readings are stored in the sensor registers, we proposed a method to scan the temperature data out by making all sensor registers scanable. Figure 8 shows a basic structure of temperature sensor reading scan-out. All the sensor registers are connected as a shift register. The temperature data is scanned out to the TAM and then the TAM transfers the data back to the Automatic Test Equipment (ATE). Even though a single TAM architecture is used in the example shown in the figure, the sensor reading scan-out methodology can be applied to multiple TAMs scenario easily. With the temperature readings from the sensors, a dynamic test scheduler can schedule the test dynamically according to temperature and also resource and power constraints. In our research, we also proposed two heuristics to generate the initial static test schedule for on-line dynamic adaption based on the measurements from the on-chip thermal sensors. Our simulation results showed that the performance of the thermal-aware test scheduling can be substantially improved with the help of on-chip thermal sensors, especially for chips with many cores. Fig. 8. ATE Core1 Core2 Core3 Sensor Registers Test Access Mechanism (TAM) Mechanism(TAM) Core4 Core5 Core6 Test architecture for sensor-based dynamic test scheduling VI. FUTURE DIRECTIONS We are already in a multi-core era and the number of cores is continuously increasing. Test scheduling problem will become even more important for the successful implementation of current and future IC designs. Although much research has been done, many aspects of test scheduling problem still need to be addressed. When CMOS technology moves into below 32nm, thermal issues cannot be ignored by the test scheduling problem. However, in all existing thermal-aware test scheduling schemes, tests are assumed to be run-to-completion. Preemptive testing can potentially reduce test time thus benefiting the test schedule. The difficulty in preemption-allowed thermal-aware test scheduling is thermal profile computation of preempted tests. If cycle-accurate power model is used, separate thermal profile is needed for each partial length of the test thus the computation complexity (and data storage) will increase significantly. New techniques need to be developed for fast and accurate estimation of thermal profile of preemptive tests. In the future, number of embedded thermal sensors are expected to substantially increase. Sensor-based thermal-aware test scheduling is sure to draw more attentions. To improve the efficiency of dynamic scheduling, estimation of temperature information using only sensor readings needs to be developed. Preemptive testing can also be adopted into sensor-based dynamic test scheduling to further improve the scheduling performance. With increasing number of cores, test scheduling techniques for homogeneous cores and heterogeneous cores need to be developed. Opportunities also exist in the areas of test scheduling on Network-on-Chip (NoC) systems and 3-D IC designs, especially for thermal-aware test scheduling.

5 REFERENCES Resource Constrained Test Scheduling: [1] C.R. Kime and K.K. Saluja. Test scheduling in testable VLSI circuits. Intl. Symposium on Fault Tolerant Computers, pages , [2] H. Krawczyk and M. Kubale. An approximation algorithm for diagnostic test scheduling in multicomputer systems. IEEE Trans. on Computers, C-34(9): , [3] M.S. Abadir and M.A. Breuer. Constructing optimal test schedules for VLSI circuits having built-in test hardware. Intl. Symposium on Fault Tolerant Computers, pages , [4] MS Abadir and MA Breuer. Test schedules for VLSI circuits having built-in test hardware. IEEE Trans. on Computers, C-35(4): , [5] G.L. Craig, C.R. Kime, and K.K. Saluja. Test scheduling and control for VLSI built-in self-test. IEEE Trans. on Computers, 37(9): , [6] C.H. Gebotys and M.I. Elmasry. VLSI design synthesis with testability. In Design Automation Conference, pages 16 21, [7] W.B. Jone, C.A. Papachristou, and M. Pereira. A scheme for overlaying concurrent testing of VLSI circuits. In Design Automation Conference, pages , [8] S.P. Lin, C.A. Njinda, and M.A. Breuer. Generating a family of testable designs using the BILBO methodology. Journal of Electronic Testing: Theory and Application, 4(1):71 89, [9] Y. Zorian. A distributed BIST control scheme for complex VLSI devices. In VLSI Test Symposium, pages 4 9, [10] M. Sugihara, H. Date, and H. Yasuura. A novel test methodology for core-based system LSIs and a testing time minimization problem. In Intl. Test Conference, pages , [11] C.A. Papachristou, F. Martin, and M. Nourani. Microprocessor based testing for core-based system on chip. In Design Automation Conference, pages , Power Constrained Test Scheduling: [12] R.M. Chou, K.K. Saluja, and V.D. Agrawal. Power constraint scheduling of tests. In Intl. Conference on VLSI Design, pages , [13] R.M. Chou, K.K. Saluja, and V.D. Agrawal. Scheduling tests for VLSI systems under power constraints. IEEE Trans. on Very Large Scale Integration Systems, 5(2): , [14] Y. Zorian, E.J. Marinissen, and S. Dey. Testing embedded-core-based system chips. IEEE Computer, 32(6):52 60, [15] K. Chakrabarty. Test scheduling for core-based systems. In Intl. Conference on Computer-Aided Design, pages , [16] V. Muresan, X. Wang, and M. Vladutiu. A comparison of classical scheduling approaches in power-constrained block-test scheduling. In Intl. Test Conference, pages , [17] V. Muresan, X. Wang, and M. Vladutiu. The left edge algorithm and the tree growing technique in block-test scheduling under power constraints. In VLSI Test Symposium, pages , [18] N. Nicolici and B.M. Al-Hashimi. Power conscious test synthesis and scheduling for BIST RTL data paths. In Intl. Test Conference, pages , [19] P.M. Rosinger, B.M. Al-Hashimi, and N. Nicolici. Power constrained test scheduling using power profile manipulation. In Intl. Symposium on Circuits and Systems, pages , [20] V. Iyengar and K. Chakrabarty. Precedence-based, preemptive, and power-constrained test scheduling for system-on-a-chip. In VLSI Test Symposium, pages , [21] E. Larsson and Z. Peng. An integrated system-on-chip test framework. In Design, Automation and Test in Europe Conference, pages , [22] E. Larsson and Z. Peng. Test scheduling and scan-chain division under power constraint. In Asian Test Symposium, pages , [23] W. Jiang and B. Vinnakota. Defect-oriented test scheduling. IEEE Trans. on Very Large Scale Integration Systems, 9(3): , [24] Y. Huang, W.T. Cheng, C.C. Tsai, N. Mukherjee, O. Samman, Y. Zaidan, and S.M. Reddy. Resource allocation and test scheduling for concurrent test of core-based SOC design. In Asian Test Symposium, pages , [25] M.L. Flottes, J. Pouget, and B. Rouzeyre. Sessionless test scheme: power-constrained test scheduling for system-on-a-chip. In Proceedings of the 11th IFIP on VLSI-SoC, pages , [26] K. Chakrabarty. Test scheduling for core-based systems using mixedinteger linear programming. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 19(10): , [27] K. Chakrabarty, V. Iyengar, and A. Chandra. Test resource partitioning for system-on-a-chip. Kluwer Academic Publishers, [28] V. Iyengar, K. Chakrabarty, and E.J. Marinissen. Wrapper/TAM cooptimization, constraint-driven test scheduling, and tester data volume reduction for SOCs. In Design Automation Conference, pages , [29] V. Iyengar, K. Chakrabarty, and E.J. Marinissen. On using rectangle packing for SOC wrapper/tam co-optimization. In VLSI Test Symposium, pages , [30] E. Larsson and Z. Peng. An integrated framework for the design and optimization of SoC test solutions. Journal of Electronic Testing: Theory and Application, 18(4): , [31] Y. Huang, S.M. Reddy, W.T. Cheng, P. Reuter, N. Mukherjee, C.C. Tsai, O. Samman, and Y. Zaidan. Optimal core wrapper width selection and SoC test scheduling based on 3-D bin packing algorithm. In Intl. Test Conference, pages 74 82, [32] V. Iyengar, K. Chakrabarty, and E.J. Marinissen. Test wrapper and test access mechanism co-optimization for system-on-chip. Journal of Electronic Testing: Theory and Application, 18(2): , [33] N. Nicolici and B.M. Al-Hashimi. Power-conscious test synthesis and scheduling. IEEE Design & Test of Computers, 20(4):48 55, [34] W. Zou, S.M. Reddy, I. Pomeranz, and Y. Huang. SOC Test Scheduling Using Simulated Annealing. In VLSI Test Symposium, pages , [35] V. Iyengar, K. Chakrabarty, and E.J. Marinissen. Test access mechanism optimization, test scheduling, and tester data volume reduction for system-on-chip. IEEE Trans. on Computers, 52(12): , [36] D. Zhao and S. Upadhyaya. Power Constrained Test Scheduling with Dynamically Varied TAM. In VLSI Test Symposium, pages , [37] E. Cota, L. Carro, F. Wagner, and M. Lubaszewski. Power-aware NoC reuse on the testing of core-based systems. In Intl. Test Conference, pages , [38] S.K. Goel and E.J. Marinissen. SOC test architecture design for efficient utilization of test bandwidth. ACM Trans. on Design Automation of Electronic Systems, 8(4): , [39] A. Chandra and K. Chakrabarty. A unified approach to reduce SoC test data volume, scan power and testing time. IEEE Trans. on Computers- Aided Design of Integrated Circuits and Systems, 22(3): , [40] N. Nicolici and B. Al-Hashimi. Power-constrained testing of VLSI circuits. Springer Netherlands, [41] M. Nourani and J. Chin. Test scheduling with power-time tradeoff and hot-spot avoidance using MILP. IEE Computers and Digital Techniques, 151(5): , [42] E. Larsson, J. Pouget, and Z. Peng. Defect-aware SoC test scheduling. In VLSI Test Symposium, pages , [43] A. Sehgal, V. Iyengar, K. Chakrabarty. SOC test planning using virtual test access architectures. IEEE Trans. on Very Large Scale Integration Systems, 12(12): , [44] C.P. Su and C.W. Wu. A graph-based approach to power-constrained SoC test scheduling. Journal of Electronic Testing: Theory and Application, 20(1):45 60, [45] Q. Xu and N. Nicolici. Resource-constrained system-on-a-chip test: a survey. IEE Computers and Digital Techniques, 152(1):67 81, [46] D. Zhao and S. Upadhyaya. Dynamically partitioned test scheduling with adaptive TAM configuration for power-constrained SoC testing. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 24(6): , [47] T.P. Wang, C.Y. Tsai, and K.J. Lee. Efficient test scheduling for hierarchical core based design. In VLSI-TSA Intl. Symposium on VLSI Design, Automation and Test, pages , [48] U. Ingelsson, S.K. Goel, E. Larsson, and E.J. Marinissen. Test scheduling for modular SOCs in an abort-on-fail environment. In European Test Symposium, pages 8 13, [49] J. Pouget, E. Larsson, and Z. Peng. Multiple-constraint driven systemon-chip test time optimization. Journal of Electronic Testing: Theory and Application, 21(6): , [50] A. Sehgal, F. Liu, S. Ozev, and K. Chakrabarty. Test planning for mixedsignal SOCs with wrapped analog cores. In Design, Automation and Test in Europe Conference, pages 50 55, 2005.

6 [51] F.A. Hussin, T. Yoneda, A. Orailoglu, and H. Fujiwara. Powerconstrained SOC test schedules through utilization of functional buses. In Intl. Conference on Computer Design, pages , [52] E. Larsson and Z. Peng. Power-aware test planning in the early systemon-chip design exploration process. IEEE Trans. on Computers, pages , [53] E. Larsson and H. Fujiwara. System-on-chip test scheduling with reconfigurable core wrappers. IEEE Trans. on Very Large Scale Integration Systems, 14(3): , [54] T. Yoneda, K. Masuda, and H. Fujiwara. Power-constrained test scheduling for multi-clock domain SoCs. In Design, Automation and Test in Europe Conference, pages 1 6, [55] S. Samii, E. Larsson, K. Chakrabarty, and Z. Peng. Cycle-accurate test power modeling and its application to SOC test scheduling. In Intl. Test Conference, pages 1 10, [56] E. Cota and C. Liu. Constraint-driven test scheduling for NoC-based systems. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 25(11): , [57] Z. He, Z. Peng, and P. Eles. Power constrained and defect-probability driven SoC test scheduling with test set partitioning. In Design, Automation and Test in Europe Conference, pages , [58] T. Yoneda, M. Imanishi, and H. Fujiwara. An SoC test scheduling algorithm using reconfigurable union wrappers. In Design, Automation and Test in Europe Conference, pages 1 6, [59] R. Chakraborty and D.R. Chowdhury. Scheduling of Cores for Power Constrained System-on-Chip Testing. Intl. Conference on Advanced Computing and Communications, pages 9 14, [60] C. Giri, D.K.R. Tipparthi, and S. Chattopadhyay. A genetic algorithm based approach for system-on-chip test scheduling using dual speed TAM with power constraint. WSEAS Trans. on Circuits and Systems, 7(5): , [61] S. Samii, M. Selkala, E. Larsson, K. Chakrabarty, and Z. Peng. Cycleaccurate test power modeling and its application to SoC test architecture design and scheduling. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 27(5): , [62] A. Larsson, E. Larsson, K. Chakrabarty, P. Eles, and Z. Peng. Testarchitecture optimization and test scheduling for SOCs with core-level expansion of compressed test patterns. In Design, Automation and Test in Europe Conference, pages , [63] Y. Li, S. Makar, and S. Mitra. CASP: concurrent autonomous chip selftest using stored test patterns. In Design, Automation and Test in Europe Conference, pages , [64] V. Chickermane, P. Gallagher, J. Sage, P. Yuan, and K. Chakravadhanula. A power-aware test methodology for multi-supply multi-voltage designs. In Intl. Test Conference, pages 1 10, [65] C.P. Ravikumar, M. Hirech, and X. Wen. Test strategies for low power devices. In Design, Automation and Test in Europe Conference, pages , [66] B. Fu, Y. Han, H. Li, and X. Li. T 2 -TAM: Reusing infrastructure resource to provide parallel testing for NoC based Chip. In Intl. Conference on ASIC, pages 91 96, [67] X. Cui, W. Cheng, X. Wang, L. Yin, Y. Sun, and Y. Zhou. Hierarchical SoC testing scheduling based on the ant colony algorithm. In Intl. Conference on ASIC, pages , [68] L. Chen, Z.L. Pan. Ant colony optimization approach for test scheduling of system on chip. ISTIC PKU, 21(2):1 6, [69] C.P. Xu, Z. Jing, M. Zhang, and G.W. Lv. Power Constraints in SOC Test Scheduling. Journal of Guilin University of Electronic Technology, 2:1 6, [70] L. Jiang, L. Huang, and Q. Xu. Test Architecture Design and Optimization for Three-Dimensional SoCs. In Design, Automation and Test in Europe Conference, pages , [71] S. Goel, E.J. Marinissen, A. Sehgal, and K. Chakrabarty. Testing of SoCs with Hierarchical Cores: Common Fallacies, Test Access Optimization, and Test Scheduling. IEEE Trans. on Computers, 58(3): , [72] Z. Wang, K. Chakrabarty, and S. Wang. Integrated LFSR reseeding, test-access optimization, and test scheduling for core-based system-onchip. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 28(8): , [73] C. Xu, X. Lu, and C. Hu. TAM/wrapper Co-optimization And Test Scheduling For SOCs Based On Hybrid Genetic Algorithm. Computer, 5(7):1086, IEEE [74] E. Larsson and C.P. Ravikumar. Power-Aware System-Level Test Planning. Power-Aware Testing and Test Strategies for Low Power Devices, pages , Thermal Constrained Test Scheduling: [75] P. Rosinger, B. Al-Hashimi, and K. Chakrabarty. Rapid generation of thermal-safe test schedules. In Design, Automation and Test in Europe Conference, pages , [76] C. Liu, K. Veeraraghavan, and V. Iyengar. Thermal-aware test scheduling and hot spot temperature minimization for core-based systems. In Intl. Symposium on Defect and Fault Tolerance in VLSI Systems, pages , [77] E. Tafaj, P. Rosinger, B.M. Al-Hashimi, and K. Chakrabarty. Improving Thermal-Safe Test Scheduling for Core-Based Systems-on-Chip Using Shift Frequency Scaling. In Intl. Symposium on Defect and Fault Tolerance in VLSI Systems, pages , [78] Z. He, Z. Peng, P. Eles, P. Rosinger, and B.M. Al-Hashimi. Thermal- Aware SoC Test Scheduling with Test Set Partitioning and Interleaving. In Intl. Symposium on Defect and Fault Tolerance in VLSI Systems, pages , [79] P. Rosinger, B.M. Al-Hashimi, and K. Chakrabarty. Thermal-safe test scheduling for core-based system-on-chip integrated circuits. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, 25(11): , [80] C. Liu and V. Iyengar. Test scheduling with thermal optimization for network-on-chip systems using variable-rate on-chip clocking. In Design, Automation and Test in Europe Conference, pages , [81] Z. He, Z. Peng, and P. Eles. A heuristic for thermal-safe SoC test scheduling. In Intl. Test Conference, pages 1 10, [82] T.E. Yu, T. Yoneda, K. Chakrabarty, and H. Fujiwara. Thermal-Safe Test Access Mechanism and Wrapper Co-optimization for System-on-Chip. In Asian Test Symposium, pages , [83] Z. He, Z. Peng, P. Eles, P. Rosinger, and B.M. Al-Hashimi. Thermalaware SoC test scheduling with test set partitioning and interleaving. Journal of Electronic Testing: Theory and Application, 24(1): , [84] D.R. Bild, S. Misra, T. Chantemy, P. Kumar, R.P. Dick, X.S. Hu, L. Shang, and A. Choudhary. Temperature-aware test scheduling for multiprocessor systems-on-chip. In Intl. Conference on Computer-Aided Design, pages 59 66, [85] T.E. Yu, T. Yoneda, K. Chakrabarty, and H. Fujiwara. Thermal-Aware Test Access Mechanism and Wrapper Design Optimization for Systemon-Chips. IEICE Trans. on Information and Systems, 91(10): , [86] S. Bahukudumbi, K. Chakrabarty, and R. Kacprowicz. Test scheduling for wafer-level test-during-burn-in of core-based SoCs. In Design, Automation and Test in Europe Conference, pages , [87] Z. He, Z. Peng, and P. Eles. Simulation-Driven Thermal-Safe Test Time Minimization for System-on-Chip. In Asian Test Symposium, pages , [88] C. Yao, K.K. Saluja, and P. Ramanathan. Partition Based SoC Test Scheduling with Thermal and Power Constraints under Deep Submicron Technologies. In Asian Test Symposium, pages , [89] C. Yao, K.K. Saluja, and P. Ramanathan. Power and Thermal Constrained SoC Test Scheduling. In Intl. Test Conference, page 1, [90] Z. He, Z. Peng, and P. Eles. Thermal-Aware Test Scheduling for Corebased SoC in an Abort-on-First-Fail Test Environment. In Euromicro Conference on Digital System Design, Architectures, Methods and Tools, pages , [91] T.E. Yu, T. Yoneda, K. Chakrabarty, and H. Fujiwara. Test infrastructure design for core-based system-on-chip under cycle-accurate thermal constraints. In Asia and South Pacific Design Automation Conference, pages , [92] C. Yao, K.K. Saluja, and P. Ramanathan. Power and Thermal Constrained Test Scheduling under Deep Submicron Technologies. IEEE Trans. on Computers-Aided Design of Integrated Circuits and Systems, [93] C. Yao, K.K. Saluja, and P. Ramanathan. Thermal-aware test scheduling Using On-Chip Temperature Sensors. Design, In Intl. Conference on VLSI

Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints

Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints Test Infrastructure Design for Core-Based System-on-Chip Under Cycle-Accurate Thermal Constraints Thomas Edison Yu, Tomokazu Yoneda, Krishnendu Chakrabarty and Hideo Fujiwara Nara Institute of Science

More information

Rapid generation of thermal-safe test schedules

Rapid generation of thermal-safe test schedules Rapid generation of thermal-safe test schedules Paul Rosinger, Bashir Al-Hashimi University of Southampton School of Electronics and Computer Science Southampton, SO17 1BJ, UK {pmr,bmah}@ecs.soton.ac.uk

More information

Layout Design and Implementation of Adiabatic based Low Power CPAL Ripple Carry Adder

Layout Design and Implementation of Adiabatic based Low Power CPAL Ripple Carry Adder Layout Design and Implementation of Adiabatic based Low Power CPAL Ripple Carry Adder Ms. Bhumika Narang TCE Department CMR Institute of Technology, Bangalore er.bhumika23@gmail.com Abstract this paper

More information

Dual-Rail Domino Logic Circuits with PVT Variations in VDSM Technology

Dual-Rail Domino Logic Circuits with PVT Variations in VDSM Technology Dual-Rail Domino Logic Circuits with PVT Variations in VDSM Technology C. H. Balaji 1, E. V. Kishore 2, A. Ramakrishna 3 1 Student, Electronics and Communication Engineering, K L University, Vijayawada,

More information

CHAPTER 3 PROBLEM DEFINITION

CHAPTER 3 PROBLEM DEFINITION 42 CHAPTER 3 PROBLEM DEFINITION 3.1 INTRODUCTION Assemblers are often left with many components that have been inspected and found to have different quality characteristic values. If done at all, matching

More information

Intelligent CAD system for the Hydraulic Manifold Blocks

Intelligent CAD system for the Hydraulic Manifold Blocks Advances in Intelligent Systems Research, volume th International Conference on Sensors, Mechatronics and Automation (ICSMA 0) Intelligent CAD system for the Hydraulic Manifold Blocks Jinwei Bai, Guang

More information

Design and Analysis of 32 Bit Regular and Improved Square Root Carry Select Adder

Design and Analysis of 32 Bit Regular and Improved Square Root Carry Select Adder 76 Design and Analysis of 32 Bit Regular and Improved Square Root Carry Select Adder Anju Bala 1, Sunita Rani 2 1 Department of Electronics and Communication Engineering, Punjabi University, Patiala, India

More information

Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang 1, Qiang Song 2,, Feng-Chun SUN 3 and Pu Zeng 4

Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang 1, Qiang Song 2,, Feng-Chun SUN 3 and Pu Zeng 4 2nd International Conference on Electronic & Mechanical Engineering and Information Technology (EMEIT-2012) Parameters Matching and Simulation on a Hybrid Power System for Electric Bulldozer Hong Wang

More information

1) The locomotives are distributed, but the power is not distributed independently.

1) The locomotives are distributed, but the power is not distributed independently. Chapter 1 Introduction 1.1 Background The railway is believed to be the most economical among all transportation means, especially for the transportation of mineral resources. In South Africa, most mines

More information

Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes

Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes Journal of Applied Science and Engineering, Vol. 20, No. 3, pp. 367 372 (2017) DOI: 10.6180/jase.2017.20.3.11 Study on Flow Characteristic of Gear Pumps by Gear Tooth Shapes Wen Wang 1, Yan-Mei Yin 1,

More information

Adaptive Power Flow Method for Distribution Systems With Dispersed Generation

Adaptive Power Flow Method for Distribution Systems With Dispersed Generation 822 IEEE TRANSACTIONS ON POWER DELIVERY, VOL. 17, NO. 3, JULY 2002 Adaptive Power Flow Method for Distribution Systems With Dispersed Generation Y. Zhu and K. Tomsovic Abstract Recently, there has been

More information

Optimizing the Performance of Wireless Rechargeable Sensor Networks

Optimizing the Performance of Wireless Rechargeable Sensor Networks IOSR Journal of Computer Engineering (IOSR-JCE) e-issn: 2278-0661,p-ISSN: 2278-8727, Volume 19, Issue 4, Ver. VII (Jul.-Aug. 2017), PP 61-69 www.iosrjournals.org Optimizing the Performance of Wireless

More information

ELECTRICAL 48 V MAIN COOLANT PUMP TO REDUCE CO 2 EMISSIONS

ELECTRICAL 48 V MAIN COOLANT PUMP TO REDUCE CO 2 EMISSIONS ELECTRICAL 48 V MAIN COOLANT PUMP TO REDUCE CO 2 EMISSIONS Mahle has developed an electrical main coolant pump for the 48 V on-board net. It replaces the mechanical pump and offers further reductions in

More information

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015)

3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) 3rd International Conference on Material, Mechanical and Manufacturing Engineering (IC3ME 2015) A High Dynamic Performance PMSM Sensorless Algorithm Based on Rotor Position Tracking Observer Tianmiao Wang

More information

Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal Back EMF using Six Hall Sensors

Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal Back EMF using Six Hall Sensors Journal of Magnetics 21(2), 173-178 (2016) ISSN (Print) 1226-1750 ISSN (Online) 2233-6656 http://dx.doi.org/10.4283/jmag.2016.21.2.173 Rotor Position Detection of CPPM Belt Starter Generator with Trapezoidal

More information

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city,

Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura. Nihon University, Narashinodai , Funabashi city, Analysis of minimum train headway on a moving block system by genetic algorithm Hideo Nakamura Nihon University, Narashinodai 7-24-1, Funabashi city, Email: nakamura@ecs.cst.nihon-u.ac.jp Abstract A minimum

More information

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control

Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control 40 Special Issue Challenges to Realizing Clean High-Performance Diesel Engines Research Report Numerical Optimization of HC Supply for HC-DeNOx System (2) Optimization of HC Supply Control Matsuei Ueda

More information

Design of Integrated Power Module for Electric Scooter

Design of Integrated Power Module for Electric Scooter EVS27 Barcelona, Spain, November 17-20, 2013 Design of Integrated Power Module for Electric Scooter Shin-Hung Chang 1, Jian-Feng Tsai, Bo-Tseng Sung, Chun-Chen Lin 1 Mechanical and Systems Research Laboratories,

More information

Electrical 48-V Main Coolant Pump to Reduce CO 2 Emissions

Electrical 48-V Main Coolant Pump to Reduce CO 2 Emissions DEVELOPMENT Cooling Electrical 48-V Main Coolant Pump to Reduce CO 2 Emissions Mahle has developed an electrical main coolant pump for the 48-V on-board net. It replaces the mechanical pump and offers

More information

Predicting Solutions to the Optimal Power Flow Problem

Predicting Solutions to the Optimal Power Flow Problem Thomas Navidi Suvrat Bhooshan Aditya Garg Abstract Predicting Solutions to the Optimal Power Flow Problem This paper discusses an implementation of gradient boosting regression to predict the output of

More information

The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture

The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture Computers in Railways XIV Special Contributions 79 The design and implementation of a simulation platform for the running of high-speed trains based on High Level Architecture X. Lin, Q. Y. Wang, Z. C.

More information

Exploiting Clock Skew Scheduling for FPGA

Exploiting Clock Skew Scheduling for FPGA Exploiting Clock Skew Scheduling for FPGA Sungmin Bae, Prasanth Mangalagiri, N. Vijaykrishnan Email {sbae, mangalag, vijay}@cse.psu.edu CSE Department, Pennsylvania State University, University Park, PA

More information

Power Management Scheme of a Photovoltaic System for Self-Powered Internet of Things

Power Management Scheme of a Photovoltaic System for Self-Powered Internet of Things Power Management Scheme of a Photovoltaic System for Self-Powered Internet of Things Renan Emanuelli Rotunno, Petros Spachos and Stefano Gregori School of Engineering, University of Guelph, Guelph, Ontario,

More information

837. Dynamics of hybrid PM/EM electromagnetic valve in SI engines

837. Dynamics of hybrid PM/EM electromagnetic valve in SI engines 837. Dynamics of hybrid PM/EM electromagnetic valve in SI engines Yaojung Shiao 1, Ly Vinh Dat 2 Department of Vehicle Engineering, National Taipei University of Technology, Taipei, Taiwan, R. O. C. E-mail:

More information

CHAPTER I INTRODUCTION

CHAPTER I INTRODUCTION CHAPTER I INTRODUCTION 1.1 GENERAL Power capacitors for use on electrical systems provide a static source of leading reactive current. Power capacitors normally consist of aluminum foil, paper, or film-insulated

More information

CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method

CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method CAE Analysis of Passenger Airbag Bursting through Instrumental Panel Based on Corpuscular Particle Method Feng Yang, Matthew Beadle Jaguar Land Rover 1 Background Passenger airbag (PAB) has been widely

More information

Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System

Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System Enhancement of Power Quality in Transmission Line Using Flexible Ac Transmission System Raju Pandey, A. K. Kori Abstract FACTS devices can be added to power transmission and distribution systems at appropriate

More information

United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations

United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations rd International Conference on Mechatronics and Industrial Informatics (ICMII 20) United Power Flow Algorithm for Transmission-Distribution joint system with Distributed Generations Yirong Su, a, Xingyue

More information

Parametric Modeling and Finite Element Analysis of the Brake Drum Based on ANSYS APDL

Parametric Modeling and Finite Element Analysis of the Brake Drum Based on ANSYS APDL 2017 3rd International Conference on Green Materials and Environmental Engineering (GMEE 2017) ISBN: 978-1-60595-500-1 Parametric Modeling and Finite Element Analysis of the Brake Drum Based on ANSYS APDL

More information

INTRODUCTION. I.1 - Historical review.

INTRODUCTION. I.1 - Historical review. INTRODUCTION. I.1 - Historical review. The history of electrical motors goes back as far as 1820, when Hans Christian Oersted discovered the magnetic effect of an electric current. One year later, Michael

More information

Fractional Factorial Designs with Admissible Sets of Clear Two-Factor Interactions

Fractional Factorial Designs with Admissible Sets of Clear Two-Factor Interactions Statistics Preprints Statistics 11-2008 Fractional Factorial Designs with Admissible Sets of Clear Two-Factor Interactions Huaiqing Wu Iowa State University, isuhwu@iastate.edu Robert Mee University of

More information

Optimization of Three-stage Electromagnetic Coil Launcher

Optimization of Three-stage Electromagnetic Coil Launcher Sensors & Transducers 2014 by IFSA Publishing, S. L. http://www.sensorsportal.com Optimization of Three-stage Electromagnetic Coil Launcher 1 Yujiao Zhang, 1 Weinan Qin, 2 Junpeng Liao, 3 Jiangjun Ruan,

More information

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming

Analysis of Fuel Economy and Battery Life depending on the Types of HEV using Dynamic Programming World Electric Vehicle Journal Vol. 6 - ISSN 2032-6653 - 2013 WEVA Page Page 0320 EVS27 Barcelona, Spain, November 17-20, 2013 Analysis of Fuel Economy and Battery Life depending on the Types of HEV using

More information

Research on the charging system of electric vehicle photovoltaic cells HUANG Jun ( Hunan Railway Professional Technology College, Zhuzhou, )

Research on the charging system of electric vehicle photovoltaic cells HUANG Jun ( Hunan Railway Professional Technology College, Zhuzhou, ) 6th International Conference on Information Engineering for Mechanics and Materials (ICIMM 2016) Research on the charging system of electric vehicle photovoltaic cells HUAG Jun ( Hunan Railway Professional

More information

Topics on Compilers. Introduction to CGRA

Topics on Compilers. Introduction to CGRA 4541.775 Topics on Compilers Introduction to CGRA Spring 2011 Reconfigurable Architectures reconfigurable hardware (reconfigware) implement specific hardware structures dynamically and on demand high performance

More information

Improved PV Module Performance Under Partial Shading Conditions

Improved PV Module Performance Under Partial Shading Conditions Available online at www.sciencedirect.com Energy Procedia 33 (2013 ) 248 255 PV Asia Pacific Conference 2012 Improved PV Module Performance Under Partial Shading Conditions Fei Lu a,*, Siyu Guo a, Timothy

More information

5 kw Multilevel DC-DC Converter for Hybrid Electric and Fuel Cell Automotive Applications

5 kw Multilevel DC-DC Converter for Hybrid Electric and Fuel Cell Automotive Applications 1 5 kw Multilevel DC-DC Converter for Hybrid Electric and Fuel Cell Automotive Applications Faisal H. Khan 1,2 Leon M. Tolbert 2 fkhan3@utk.edu tolbert@utk.edu 2 Electric Power Research Institute (EPRI)

More information

EVS25 Shenzhen, China, Nov 5-9, Battery Management Systems for Improving Battery Efficiency in Electric Vehicles

EVS25 Shenzhen, China, Nov 5-9, Battery Management Systems for Improving Battery Efficiency in Electric Vehicles World Electric ehicle Journal ol. 4 - ISSN 2032-6653 - 20 WEA Page000351 ES25 Shenzhen, China, Nov 5-9, 20 Management Systems for Improving Efficiency in Electric ehicles Yow-Chyi Liu Department of Electrical

More information

Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment

Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment Optimal sizing and Placement of Capacitors for Loss Minimization In 33-Bus Radial Distribution System Using Genetic Algorithm in MATLAB Environment Mr. Manish Gupta, Dr. Balwinder Singh Surjan Abstract

More information

Fully Integrated SC DC-DC: Bulk CMOS Oriented Design

Fully Integrated SC DC-DC: Bulk CMOS Oriented Design Fully Integrated SC DC-DC: Bulk CMOS Oriented Design Hans Meyvaert Prof. Michiel Steyaert 17 Nov 2012 Outline Towards monolithic integration CMOS as technology vehicle Techniques for CMOS DC-DC Conclusions

More information

Use of Flow Network Modeling for the Design of an Intricate Cooling Manifold

Use of Flow Network Modeling for the Design of an Intricate Cooling Manifold Use of Flow Network Modeling for the Design of an Intricate Cooling Manifold Neeta Verma Teradyne, Inc. 880 Fox Lane San Jose, CA 94086 neeta.verma@teradyne.com ABSTRACT The automatic test equipment designed

More information

Overview. Battery Monitoring

Overview. Battery Monitoring Wireless Battery Management Systems Highlight Industry s Drive for Higher Reliability By Greg Zimmer Sr. Product Marketing Engineer, Signal Conditioning Products Linear Technology Corporation Overview

More information

Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells

Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells 5th International Conference on Environment, Materials, Chemistry and Power Electronics (EMCPE 2016) Grouped and Segmented Equalization Strategy of Serially Connected Battery Cells Haolin Li1, a, Guojing

More information

Performance Evaluation of Electric Vehicles in Macau

Performance Evaluation of Electric Vehicles in Macau Journal of Asian Electric Vehicles, Volume 12, Number 1, June 2014 Performance Evaluation of Electric Vehicles in Macau Tze Wood Ching 1, Wenlong Li 2, Tao Xu 3, and Shaojia Huang 4 1 Department of Electromechanical

More information

Clearance Loss Analysis in Linear Compressor with CFD Method

Clearance Loss Analysis in Linear Compressor with CFD Method Clearance Loss Analysis in Linear Compressor with CFD Method Wenjie Zhou, Zhihua Gan, Xiaobin Zhang, Limin Qiu, Yinzhe Wu Cryogenics Laboratory, Zhejiang University Hangzhou, Zhejiang, China, 310027 ABSTRACT

More information

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE

VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE VOLTAGE STABILITY CONSTRAINED ATC COMPUTATIONS IN DEREGULATED POWER SYSTEM USING NOVEL TECHNIQUE P. Gopi Krishna 1 and T. Gowri Manohar 2 1 Department of Electrical and Electronics Engineering, Narayana

More information

The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth

The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth 5th International Conference on Advanced Engineering Materials and Technology (AEMT 2015) The Design of Vehicle Tire Pressure Monitoring System Based on Bluetooth Liqing Geng 1, a *, Li Zhao 2,b, Zeyu

More information

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency 2016 3 rd International Conference on Vehicle, Mechanical and Electrical Engineering (ICVMEE 2016) ISBN: 978-1-60595-370-0 Responsive Bus Bridging Service Planning Under Urban Rail Transit Line Emergency

More information

DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER

DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER Australasian Universities Power Engineering Conference (AUPEC 2004) 26-29 September 2004, Brisbane, Australia DESIGN OF HIGH ENERGY LITHIUM-ION BATTERY CHARGER M.F.M. Elias*, A.K. Arof**, K.M. Nor* *Department

More information

Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing

Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing , pp.76-81 http://dx.doi.org/10.14257/astl.2016.137.14 Multi-level Feeder Queue Dispatch based Electric Vehicle Charging Model and its Implementation of Cloud-computing Wei Wang 1, Minghao Ai 2 Naishi

More information

CHAPTER 1 INTRODUCTION

CHAPTER 1 INTRODUCTION CHAPTER 1 INTRODUCTION 1.1 CONSERVATION OF ENERGY Conservation of electrical energy is a vital area, which is being regarded as one of the global objectives. Along with economic scheduling in generation

More information

Written Exam Public Transport + Answers

Written Exam Public Transport + Answers Faculty of Engineering Technology Written Exam Public Transport + Written Exam Public Transport (195421200-1A) Teacher van Zuilekom Course code 195421200 Date and time 7-11-2011, 8:45-12:15 Location OH116

More information

HIGH VOLTAGE vs. LOW VOLTAGE: POTENTIAL IN MILITARY SYSTEMS

HIGH VOLTAGE vs. LOW VOLTAGE: POTENTIAL IN MILITARY SYSTEMS 2013 NDIA GROUND VEHICLE SYSTEMS ENGINEERING AND TECHNOLOGY SYMPOSIUM POWER AND MOBILITY (P&M) MINI-SYMPOSIUM AUGUST 21-22, 2013 TROY, MICHIGAN HIGH VOLTAGE vs. LOW VOLTAGE: POTENTIAL IN MILITARY SYSTEMS

More information

Circular BIST - Organization

Circular BIST - Organization Circular BIST - Organization Architecture Operation BIST Controller Selective Replacement Register Adjacency Limit Cycling Design Guidelines Hardware Solutions Benefits and Limitations C. Stroud 10/06

More information

Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor

Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor Purdue University Purdue e-pubs International Compressor Engineering Conference School of Mechanical Engineering 2004 Theoretical and Experimental Investigation of Compression Loads in Twin Screw Compressor

More information

A Personalized Highway Driving Assistance System

A Personalized Highway Driving Assistance System A Personalized Highway Driving Assistance System Saina Ramyar 1 Dr. Abdollah Homaifar 1 1 ACIT Institute North Carolina A&T State University March, 2017 aina Ramyar, Dr. Abdollah Homaifar (NCAT) A Personalized

More information

Regenerative Braking System for Series Hybrid Electric City Bus

Regenerative Braking System for Series Hybrid Electric City Bus Page 0363 Regenerative Braking System for Series Hybrid Electric City Bus Junzhi Zhang*, Xin Lu*, Junliang Xue*, and Bos Li* Regenerative Braking Systems (RBS) provide an efficient method to assist hybrid

More information

various energy sources. Auto rickshaws are three-wheeled vehicles which are commonly used as taxis for people and

various energy sources. Auto rickshaws are three-wheeled vehicles which are commonly used as taxis for people and ISSN: 0975-766X CODEN: IJPTFI Available Online through Research Article www.ijptonline.com ANALYSIS OF ELECTRIC TRACTION FOR SOLAR POWERED HYBRID AUTO RICKSHAW Chaitanya Kumar. B, Monisuthan.S.K Student,

More information

Analysis and Design of Independent Pitch Control System

Analysis and Design of Independent Pitch Control System 5th International Conference on Civil Engineering and Transportation (ICCET 2015) Analysis and Design of Independent Pitch Control System CHU Yun Kai1, a *, MIAO Qiang2,b, DU Jin Song1,c, LIU Yi Yang 1,d

More information

A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design

A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design A Cost Benefit Analysis of Faster Transmission System Protection Schemes and Ground Grid Design Presented at the 2018 Transmission and Substation Design and Operation Symposium Revision presented at the

More information

Effect of Stator Shape on the Performance of Torque Converter

Effect of Stator Shape on the Performance of Torque Converter 16 th International Conference on AEROSPACE SCIENCES & AVIATION TECHNOLOGY, ASAT - 16 May 26-28, 2015, E-Mail: asat@mtc.edu.eg Military Technical College, Kobry Elkobbah, Cairo, Egypt Tel : +(202) 24025292

More information

Study on State of Charge Estimation of Batteries for Electric Vehicle

Study on State of Charge Estimation of Batteries for Electric Vehicle Study on State of Charge Estimation of Batteries for Electric Vehicle Haiying Wang 1,a, Shuangquan Liu 1,b, Shiwei Li 1,c and Gechen Li 2 1 Harbin University of Science and Technology, School of Automation,

More information

MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM

MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM MODELING AND SIMULATION OF INTERNAL CIRCULATION TWO-PLATEN INJECTION MOLDING MACHINE BASED ON AMESIM Lu Yang, Jiong Peng, Dongjie Chen and Jian Wang* Beijing Institute of Technology, Beijing 100081, China

More information

A Novel DC-DC Converter Based Integration of Renewable Energy Sources for Residential Micro Grid Applications

A Novel DC-DC Converter Based Integration of Renewable Energy Sources for Residential Micro Grid Applications A Novel DC-DC Converter Based Integration of Renewable Energy Sources for Residential Micro Grid Applications Madasamy P 1, Ramadas K 2 Assistant Professor, Department of Electrical and Electronics Engineering,

More information

Hybrid Three-Port DC DC Converter for PV-FC Systems

Hybrid Three-Port DC DC Converter for PV-FC Systems Hybrid Three-Port DC DC Converter for PV-FC Systems P Srihari Babu M.Tech (Power Systems) B Ashok Kumar Assistant Professor Dr. A.Purna Chandra Rao Professor & HoD Abstract The proposed a hybrid power

More information

Optimum Matching of Electric Vehicle Powertrain

Optimum Matching of Electric Vehicle Powertrain Available online at www.sciencedirect.com ScienceDirect Energy Procedia 88 (2016 ) 894 900 CUE2015-Applied Energy Symposium and Summit 2015: Low carbon cities and urban energy systems Optimum Matching

More information

A Novel Approach for Optimal Location and Size of Distribution Generation Unit in Radial Distribution Systems Based on Load Centroid Method

A Novel Approach for Optimal Location and Size of Distribution Generation Unit in Radial Distribution Systems Based on Load Centroid Method A Novel Approach for Optimal Location and Size of Distribution Generation Unit in Radial Distribution Systems Based on Load Centroid Method G.Rajyalakshmi, N.Prema Kumar Abstract Optimum DG placement and

More information

A highly-integrated and efficient commercial distributed EV battery balancing system

A highly-integrated and efficient commercial distributed EV battery balancing system LETTER IEICE Electronics Express, Vol.15, No.8, 1 10 A highly-integrated and eicient commercial distributed EV battery balancing system Feng Chen 1, Jun Yuan 1, Chaojun Zheng 1, Canbo Wang 1, and Zhan

More information

Modeling, Design and Simulation of Active Suspension System Root Locus Controller using Automated Tuning Technique.

Modeling, Design and Simulation of Active Suspension System Root Locus Controller using Automated Tuning Technique. Modeling, Design and Simulation of Active Suspension System Root Locus Controller using Automated Tuning Technique. Omorodion Ikponwosa Ignatius Obinabo C.E Abstract Evbogbai M.J.E. Car suspension system

More information

Modeling and Simulation of Multi-input Bi-directional Boost Converter for Renewable Energy Applications using MatLab/Simulink

Modeling and Simulation of Multi-input Bi-directional Boost Converter for Renewable Energy Applications using MatLab/Simulink Modeling and Simulation of Multi-input Bi-directional Boost Converter for Renewable Energy Applications using MatLab/Simulink Ramya. S Assistant Professor, ECE P.A. College of Engineering and Technology,

More information

Multi-Port DC-DC Converter for Grid Integration of Photo Voltaic Systems through Storage Systems with High Step-Up Ratio

Multi-Port DC-DC Converter for Grid Integration of Photo Voltaic Systems through Storage Systems with High Step-Up Ratio Multi-Port DC-DC Converter for Grid Integration of Photo Voltaic Systems through Storage Systems with High Step-Up Ratio CH.Rekha M.Tech (Energy Systems), Dept of EEE, M.Vinod Kumar Assistant Professor,

More information

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment

Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Intelligent Energy Management System Simulator for PHEVs at a Municipal Parking Deck in a Smart Grid Environment Preetika Kulshrestha, Student Member, IEEE, Lei Wang, Student Member, IEEE, Mo-Yuen Chow,

More information

A Study on Performance Enhancement of Heat Exchanger in Thermoelectric Generator using CFD

A Study on Performance Enhancement of Heat Exchanger in Thermoelectric Generator using CFD IJIRST International Journal for Innovative Research in Science & Technology Volume 2 Issue 10 March 2016 ISSN (online): 2349-6010 A Study on Performance Enhancement of Heat Exchanger in Thermoelectric

More information

Flip-Flop Grouping in Data-Driven Clock Gating for Dynamic Power Management

Flip-Flop Grouping in Data-Driven Clock Gating for Dynamic Power Management Flip-Flop Grouping in Data-Driven Clock Gating for Dynamic Power Management N.Indhumathi 1, Dr.S.Nirmala 2 PG Student [Applied Electronics], Dept. of ECE, Muthayammal Engineering College, Namakkal, Tamilnadu,

More information

Current Scheduling for Parallel Buck Regulated Battery Modules

Current Scheduling for Parallel Buck Regulated Battery Modules Preprints of the 19th World Congress The International Federation of Automatic Control Cape Town, South Africa. August 24-29, 214 Current Scheduling for Parallel Buck Regulated Battery Modules Xin Zhao

More information

Chengdu, , China. Shanghai, , China. Keywords: Transmission Line; Online Monitoring; Energy-Saving

Chengdu, , China. Shanghai, , China. Keywords: Transmission Line; Online Monitoring; Energy-Saving International Conference on Intelligent Systems Research and Mechatronics Engineering (ISRME 205) A Comprehensive Efficient Energy-saving Control Scheme For Transmission Line OnLine Monitoring Device Ying

More information

Evaluation of Dynamic Weight Threshold Algorithm for WIM Operations using Simulation

Evaluation of Dynamic Weight Threshold Algorithm for WIM Operations using Simulation Evaluation of Dynamic Weight Threshold Algorithm for WIM Operations using Simulation Zhongren Gu and Lee D. Han Department of Civil & Environmental Engineering THE UNIVERSITY OF TENNESSEE ABSTRACT In the

More information

Analysis and Design of the Super Capacitor Monitoring System of Hybrid Electric Vehicles

Analysis and Design of the Super Capacitor Monitoring System of Hybrid Electric Vehicles Available online at www.sciencedirect.com Procedia Engineering 15 (2011) 90 94 Advanced in Control Engineering and Information Science Analysis and Design of the Super Capacitor Monitoring System of Hybrid

More information

Lower-Loss Technology

Lower-Loss Technology Lower-Loss Technology FOR A STEPPING MOTOR Yasuo Sato (From the Fall 28 Technical Conference of the SMMA. Reprinted with permission of the Small Motor & Motion Association.) Management Summary The demand

More information

The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal

The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal The Effective IVIS Menu and Control Type of an Instrumental Gauge Cluster and Steering Wheel Remote Control with a Menu Traversal Seong M. Kim 1, Jaekyu Park 2, Jaeho Choe 3, and Eui S. Jung 2 1 Graduated

More information

Voltage Sag Mitigation in IEEE 6 Bus System by using STATCOM and UPFC

Voltage Sag Mitigation in IEEE 6 Bus System by using STATCOM and UPFC IJSTE - International Journal of Science Technology & Engineering Volume 2 Issue 01 July 2015 ISSN (online): 2349-784X Voltage Sag Mitigation in IEEE 6 Bus System by using STATCOM and UPFC Ravindra Mohana

More information

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge

Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Auc2Charge: An Online Auction Framework for Electric Vehicle Park-and-Charge Qiao Xiang 1, Fanxin Kong 1, Xue Liu 1, Xi Chen 1, Linghe Kong 1 and Lei Rao 2 1 School of Computer Science, McGill University

More information

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG 2017 2 nd International Conference on Test, Measurement and Computational Method (TMCM 2017) ISBN: 978-1-60595-465-3 An Energy Efficiency Measurement Scheme for Electric Car Charging Pile Chun-bing JIANG

More information

Combination control for photovoltaic-battery-diesel hybrid micro grid system

Combination control for photovoltaic-battery-diesel hybrid micro grid system , pp.93-99 http://dx.doi.org/10.14257/astl.2015.82.18 Combination control for photovoltaic-battery-diesel hybrid micro grid system Yuanzhuo Du 1, Jinsong Liu 2 1 Shenyang Institute of Engineering, Shenyang,

More information

Convex optimization for design and control problems in electromobility

Convex optimization for design and control problems in electromobility Convex optimization for design and control problems in electromobility - Recent developments through case studies - Nikolce Murgovski Department of Signals and Systems, Chalmers University of Technology

More information

Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1, a * and Wentao Cheng2

Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1, a * and Wentao Cheng2 7th International Conference on Mechatronics, Computer and Education Informationization (MCEI 2017) Modal Analysis of Automobile Brake Drum Based on ANSYS Workbench Dan Yang1, 2,Zhen Yu1, 2, Leilei Zhang1,

More information

Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells

Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells Modeling Reversible Self-Discharge in Series- Connected Li-ion Battery Cells Valentin Muenzel, Marcus Brazil, Iven Mareels Electrical and Electronic Engineering University of Melbourne Victoria, Australia

More information

An Improved Powertrain Topology for Fuel Cell-Battery-Ultracapacitor Vehicles

An Improved Powertrain Topology for Fuel Cell-Battery-Ultracapacitor Vehicles An Improved Powertrain Topology for Fuel Cell-Battery-Ultracapacitor Vehicles J. Bauman, Student Member, IEEE, M. Kazerani, Senior Member, IEEE Department of Electrical and Computer Engineering, University

More information

Scheduling for Wireless Energy Sharing Among Electric Vehicles

Scheduling for Wireless Energy Sharing Among Electric Vehicles Scheduling for Wireless Energy Sharing Among Electric Vehicles Zhichuan Huang Computer Science and Electrical Engineering University of Maryland, Baltimore County Ting Zhu Computer Science and Electrical

More information

CMPEN 411 VLSI Digital Circuits Spring Lecture 24: Peripheral Memory Circuits

CMPEN 411 VLSI Digital Circuits Spring Lecture 24: Peripheral Memory Circuits CMPEN 411 VLSI Digital Circuits Spring 2012 Lecture 24: Peripheral Memory Circuits [Adapted from Rabaey s Digital Integrated Circuits, Second Edition, 2003 J. Rabaey, A. Chandrakasan, B. Nikolic] Sp12

More information

Analysis on fatigue life of a certain gear transmission system

Analysis on fatigue life of a certain gear transmission system Analysis on fatigue life of a certain gear transmission system Zhou Jie 1, Jia Yun Xian 2, Liu Xin 3 Department of Equipment Command and Management, Mechanical Engineering College, Shijiazhuang, China

More information

A successive approximation method to precisely measure leakage current of the rechargeable Lithium coin battery

A successive approximation method to precisely measure leakage current of the rechargeable Lithium coin battery A successive approximation method to precisely measure leakage current of the rechargeable Lithium coin battery X. Yue*, J. Kiely, S. Ghauri, M. Kauer, M. Bellanger and D. Gibson X. Yue, J. Kiely and S.

More information

Modeling, Design and Simulation of Active Suspension System Frequency Response Controller using Automated Tuning Technique

Modeling, Design and Simulation of Active Suspension System Frequency Response Controller using Automated Tuning Technique Modeling, Design and Simulation of Active Suspension System Frequency Response Controller using Automated Tuning Technique Omorodion Ikponwosa Ignatius Obinabo C.E Evbogbai M.J.E. Abstract Car suspension

More information

Optimisation of Precedence-constrained Production Sequencing and Scheduling Using Genetic Algorithms

Optimisation of Precedence-constrained Production Sequencing and Scheduling Using Genetic Algorithms Optimisation of Precedence-constrained Production Sequencing and Scheduling Using Genetic Algorithms Son Duy DAO & Romeo MARIAN Abstract This paper present the development of a Genetic Algorithm (GA) for

More information

Simulation of Voltage Stability Analysis in Induction Machine

Simulation of Voltage Stability Analysis in Induction Machine International Journal of Electronic and Electrical Engineering. ISSN 0974-2174 Volume 6, Number 1 (2013), pp. 1-12 International Research Publication House http://www.irphouse.com Simulation of Voltage

More information

Artificial-Intelligence-Based Electrical Machines and Drives

Artificial-Intelligence-Based Electrical Machines and Drives Artificial-Intelligence-Based Electrical Machines and Drives Application of Fuzzy, Neural, Fuzzy-Neural, and Genetic-Algorithm-Based Techniques Peter Vas Professor of Electrical Engineering University

More information

Simulation Analysis of Closed Loop Dual Inductor Current-Fed Push-Pull Converter by using Soft Switching

Simulation Analysis of Closed Loop Dual Inductor Current-Fed Push-Pull Converter by using Soft Switching Journal for Research Volume 02 Issue 04 June 2016 ISSN: 2395-7549 Simulation Analysis of Closed Loop Dual Inductor Current-Fed Push-Pull Converter by using Soft Switching Ms. Manasa M P PG Scholar Department

More information

Smart Grid A Reliability Perspective

Smart Grid A Reliability Perspective Khosrow Moslehi, Ranjit Kumar - ABB Network Management, Santa Clara, CA USA Smart Grid A Reliability Perspective IEEE PES Conference on Innovative Smart Grid Technologies, January 19-21, Washington DC

More information

Power Your Ride. Seminar Series. STMicroelectronics is pleased to present the. Detroit June 7, 2016 Santa Clara June,

Power Your Ride. Seminar Series. STMicroelectronics is pleased to present the. Detroit June 7, 2016 Santa Clara June, Power Your Ride STMicroelectronics is pleased to present the Power Your Ride Seminar Series Attend a FREE full day of technical seminars near you. Join us for a day of educational presentations on Automotive

More information

Robust Fault Diagnosis in Electric Drives Using Machine Learning

Robust Fault Diagnosis in Electric Drives Using Machine Learning Robust Fault Diagnosis in Electric Drives Using Machine Learning ZhiHang Chen, Yi Lu Murphey, Senior Member, IEEE, Baifang Zhang, Hongbin Jia University of Michigan-Dearborn Dearborn, Michigan 48128, USA

More information