1,720 research outputs found

    A grid-based ant colony algorithm for automatic 3D hose routing

    Get PDF
    Ant Colony Algorithms applied to difficult combinatorial optimization problems such as the traveling salesman problem (TSP) and the quadratic assignment problem. In this paper we propose a grid-based ant colony algorithm for automatic 3D hose routing. Algorithm uses the tessellated format of the obstacles and the generated hoses in order to detect collisions. The representation of obstacles and hoses in the tessellated format greatly helps the algorithm towards handling free-form objects and speed up the computations. The performance of the algorithm has been tested on a number of 3D models

    Geometric-based Optimization Algorithms for Cable Routing and Branching in Cluttered Environments

    Get PDF
    The need for designing lighter and more compact systems often leaves limited space for planning routes for the connectors that enable interactions among the system’s components. Finding optimal routes for these connectors in a densely populated environment left behind at the detail design stage has been a challenging problem for decades. A variety of deterministic as well as heuristic methods has been developed to address different instances of this problem. While the focus of the deterministic methods is primarily on the optimality of the final solution, the heuristics offer acceptable solutions, especially for such problems, in a reasonable amount of time without guaranteeing to find optimal solutions. This study is an attempt to furthering the efforts in deterministic optimization methods to tackle the routing problem in two and three dimensions by focusing on the optimality of final solutions. The objective of this research is twofold. First, a mathematical framework is proposed for the optimization of the layout of wiring connectors in planar cluttered environments. The problem looks at finding the optimal tree network that spans multiple components to be connected with the aim of minimizing the overall length of the connectors while maximizing their common length (for maintainability and traceability of connectors). The optimization problem is formulated as a bi-objective problem and two solution methods are proposed: (1) to solve for the optimal locations of a known number of breakouts (where the connectors branch out) using mixed-binary optimization and visibility notion and (2) to find the minimum length tree that spans multiple components of the system and generates the optimal layout using the previously-developed convex hull based routing. The computational performance of these methods in solving a variety of problems is further evaluated. Second, the problem of finding the shortest route connecting two given nodes in a 3D cluttered environment is considered and addressed through deterministically generating a graphical representation of the collision-free space and searching for the shortest path on the found graph. The method is tested on sample workspaces with scattered convex polyhedra and its computational performance is evaluated. The work demonstrates the NP-hardness aspect of the problem which becomes quickly intractable as added components or increase in facets are considered

    Ant colony optimization based simulation of 3d automatic hose/pipe routing

    Get PDF
    This thesis was submitted for the degree of Doctor of Philosophy and awarded by Brunel University.This thesis focuses on applying one of the rapidly growing non-deterministic optimization algorithms, the ant colony algorithm, for simulating automatic hose/pipe routing with several conflicting objectives. Within the thesis, methods have been developed and applied to single objective hose routing, multi-objective hose routing and multi-hose routing. The use of simulation and optimization in engineering design has been widely applied in all fields of engineering as the computational capabilities of computers has increased and improved. As a result of this, the application of non-deterministic optimization techniques such as genetic algorithms, simulated annealing algorithms, ant colony algorithms, etc. has increased dramatically resulting in vast improvements in the design process. Initially, two versions of ant colony algorithms have been developed based on, respectively, a random network and a grid network for a single objective (minimizing the length of the hoses) and avoiding obstacles in the CAD model. While applying ant colony algorithms for the simulation of hose routing, two modifications have been proposed for reducing the size of the search space and avoiding the stagnation problem. Hose routing problems often consist of several conflicting or trade-off objectives. In classical approaches, in many cases, multiple objectives are aggregated into one single objective function and optimization is then treated as a single-objective optimization problem. In this thesis two versions of ant colony algorithms are presented for multihose routing with two conflicting objectives: minimizing the total length of the hoses and maximizing the total shared length (bundle length). In this case the two objectives are aggregated into a single objective. The current state-of-the-art approach for handling multi-objective design problems is to employ the concept of Pareto optimality. Within this thesis a new Pareto-based general purpose ant colony algorithm (PSACO) is proposed and applied to a multi-objective hose routing problem that consists of the following objectives: total length of the hoses between the start and the end locations, number of bends, and angles of bends. The proposed method is capable of handling any number of objectives and uses a single pheromone matrix for all the objectives. The domination concept is used for updating the pheromone matrix. Among the currently available multi-objective ant colony optimization (MOACO) algorithms, P-ACO generates very good solutions in the central part of the Pareto front and hence the proposed algorithm is compared with P-ACO. A new term is added to the random proportional rule of both of the algorithms (PSACO and P-ACO) to attract ants towards edges that make angles close to the pre-specified angles of bends. A refinement algorithm is also suggested for searching an acceptable solution after the completion of searching the entire search space. For all of the simulations, the STL format (tessellated format) for the obstacles is used in the algorithm instead of the original shapes of the obstacles. This STL format is passed to the C++ library RAPID for collision detection. As a result of using this format, the algorithms can handle freeform obstacles and the algorithms are not restricted to a particular software package

    Geometric Path-Planning Algorithm in Cluttered 2D Environments Using Convex Hulls

    Get PDF
    Routing or path planning is the problem of finding a collision-free path in an environment usually scattered with multiple objects. Finding the shortest route in a planar (2D) or spatial (3D) environment has a variety of applications such as robot motion planning, navigating autonomous vehicles, routing of cables, wires, and harnesses in vehicles, routing of pipes in chemical process plants, etc. The problem often times is decomposed into two main sub-problems: modeling and representation of the workspace geometrically and optimization of the path. Geometric modeling and representation of the workspace are paramount in any path planning problem since it builds the data structures and provides the means for solving the optimization problem. The optimization aspect of the path planning involves satisfying some constraints, the most important of which is to avoid intersections with the interior of any object and optimizing one or more criteria. The most common criterion in path planning problems is to minimize the length of the path between a source and a destination point of the workspace while other criteria such as minimizing the number of links or curves could also be taken into account. Planar path planning is mainly about modeling the workspace of the problem as a collision-free graph. The graph is, later on, searched for the optimal path using network optimization techniques such as branch-and-bound or search algorithms such as Dijkstra\u27s. Previous methods developed to construct the collision-free graph explore the entire workspace of the problem which usually results in some unnecessary information that has no value but to increase the time complexity of the algorithm, hence, affecting the efficiency significantly. For example, the fastest known algorithm to construct the visibility graph, which is the most common method of modeling the collision-free space, in a workspace with a total of n vertices has a time complexity of order O(n2). In this research, first, the 2D workspace of the problem is modeled using the tessellated format of the objects in a CAD software which facilitates handling of any free-form object. Then, an algorithm is developed to construct the collision-free graph of the workspace using the convex hulls of the intersecting obstacles. The proposed algorithm focuses only on a portion of the workspace involved in the straight line connecting the source and destination points. Considering the worst case that all the objects of the workspace are intersecting, the algorithm yields a time complexity of O(nlog(n/f)), with n being the total number of vertices and f being the number of objects. The collision-free graph is later searched for the shortest path between the two given nodes using a search algorithm known as Dijkstra\u27s

    Genetic Programming to Optimise 3D Trajectories

    Get PDF
    Dissertation submitted in partial fulfilment of the requirements for the Degree of Master of Science in Geospatial TechnologiesTrajectory optimisation is a method of finding the optimal route connecting a start and end point. The suitability of a trajectory depends on non-intersection with any obstacles as well as predefined performance metrics. In the context of UAVs, the goal is to minimise the cost of the route, in terms of energy or time, while avoiding restricted flight zones. Artificial intelligence techniques including evolutionary computation have been applied to trajectory optimisation with various degrees of success. This thesis explores the use of genetic programming (GP) to optimise trajectories in 3D space, by encoding 3D geographic trajectories as syntax trees representing a curve. A comprehensive review of the relevant literature is presented, covering the theory and techniques of GP, as well as the principles and challenges of 3D trajectory optimisation. The main contribution of this work is the development and implementation of a novel GP algorithm using function trees to encode 3D geographical trajectories. The trajectories are validated and evaluated using a realworld dataset and multiple objectives. The results demonstrate the effectiveness of the proposed algorithm, which outperforms existing methods in terms of speed, automaticity, and robustness. Finally, insights and recommendations for future research in this area are provided, highlighting the potential for GP to be applied to other complex optimisation problems in engineering and science

    Ant colony optimization based simulation of 3d automatic hose/pipe routing

    Get PDF
    This thesis focuses on applying one of the rapidly growing non-deterministic optimization algorithms, the ant colony algorithm, for simulating automatic hose/pipe routing with several conflicting objectives. Within the thesis, methods have been developed and applied to single objective hose routing, multi-objective hose routing and multi-hose routing. The use of simulation and optimization in engineering design has been widely applied in all fields of engineering as the computational capabilities of computers has increased and improved. As a result of this, the application of non-deterministic optimization techniques such as genetic algorithms, simulated annealing algorithms, ant colony algorithms, etc. has increased dramatically resulting in vast improvements in the design process. Initially, two versions of ant colony algorithms have been developed based on, respectively, a random network and a grid network for a single objective (minimizing the length of the hoses) and avoiding obstacles in the CAD model. While applying ant colony algorithms for the simulation of hose routing, two modifications have been proposed for reducing the size of the search space and avoiding the stagnation problem. Hose routing problems often consist of several conflicting or trade-off objectives. In classical approaches, in many cases, multiple objectives are aggregated into one single objective function and optimization is then treated as a single-objective optimization problem. In this thesis two versions of ant colony algorithms are presented for multihose routing with two conflicting objectives: minimizing the total length of the hoses and maximizing the total shared length (bundle length). In this case the two objectives are aggregated into a single objective. The current state-of-the-art approach for handling multi-objective design problems is to employ the concept of Pareto optimality. Within this thesis a new Pareto-based general purpose ant colony algorithm (PSACO) is proposed and applied to a multi-objective hose routing problem that consists of the following objectives: total length of the hoses between the start and the end locations, number of bends, and angles of bends. The proposed method is capable of handling any number of objectives and uses a single pheromone matrix for all the objectives. The domination concept is used for updating the pheromone matrix. Among the currently available multi-objective ant colony optimization (MOACO) algorithms, P-ACO generates very good solutions in the central part of the Pareto front and hence the proposed algorithm is compared with P-ACO. A new term is added to the random proportional rule of both of the algorithms (PSACO and P-ACO) to attract ants towards edges that make angles close to the pre-specified angles of bends. A refinement algorithm is also suggested for searching an acceptable solution after the completion of searching the entire search space. For all of the simulations, the STL format (tessellated format) for the obstacles is used in the algorithm instead of the original shapes of the obstacles. This STL format is passed to the C++ library RAPID for collision detection. As a result of using this format, the algorithms can handle freeform obstacles and the algorithms are not restricted to a particular software package.EThOS - Electronic Theses Online ServiceGBUnited Kingdo

    Study on liquid metal magnetohydrodynamic flows and numerical application to a water-cooled blanket for fusion reactors

    Get PDF
    Il breeding blanket \`{e} uno dei componenti chiave per il funzionamento di un reattore a fusione termonucleare, in quanto responsabile dell'estrazione della potenza termica generata dalle reazioni nucleari, della surgenerazione del trizio, e della schermatura per i componenti sensibili alle radiazioni e il personale. I metalli liquidi, come la lega eutettica di piombo e litio (PbLi), sono considerati come attraenti fluidi tecnici da impiegare in questo componente a causa della loro combinazione di eccellenti propriet\`{a} termiche, alta temperatura di ebollizione e capacit\`{a} di generare trizio. Tuttavia, questi sono caratterizzati anche da caratteristiche meno desiderabili, una tra tante l'elevata conduttivit\`{a} elettrica che, interagendo con l'intenso campo magnetico del reattore, causa cambiamenti multiformi e significativi nel comportamento fluidodinamico. In tali condizioni, il moto del metallo liquido non pu\`{o} essere pi\`{u} descritto con le usuali equazioni della fluidodinamica, ma bisogna ricorrere alla teoria magnetoidrodinamica (MHD). La transizione al regime MHD \`{e} accompagnata da diversi effetti tra cui, a titolo esemplificativo, si possono ricordare maggiori perdite di carico dovute ad attrito elettromagnetico, soppressione della turbolenza, modifiche nelle caratterische di scambio termico e fenomeni di trasporto della massa, ecc. Una comprensione completa di questi fenomeni \`{e} di fondamentale importanza per valutare con precisione le prestazioni generali del componente e realizzare un progetto in grado di soddisfare i requisiti del reattore. Uno dei due concept di breeding blanket attualmente studiati per l'implementazione nel reattore DEMO nell'ambito delle attivit\`{a} di ricerca e sviluppo coordinate dal consorzio EUROfusion \`{e} il Water Cooled Lithium Lead (WCLL). Questo blanket si basa sull'architettura a raffreddamento separato, dove il metallo liquido \`{e} utilizzato esclusivamente come breeder triziogeno e moltiplicatore di neutroni, mentre il refrigerante \`{e} acqua pressurizzata che, essendo un fluido non elettricamente conduttivo, non \`{e} influenzata dagli effetti MHD. In questo modello di blanket, la velocit\`{a} del metallo liquido pu\`{o} essere minimizzata a un valore sufficiente a garantire l'estrazione del trizio ma, anche se le perdite di carico MHD sono ridotte rispetto a un blanket dove il fluido svolge anche la fuzione di refrigerante, i fenomeni MHD continuano a guidare il design globale. Nonostante l'importanza di una piena comprensione dei fenomeni MHD per progettare efficacemente una blanket a metallo liquido, negli anni passati non \`{e} stata condotta alcuna attivit\`{a} di ricerca dedicata sul WCLL e questa importante mancanza \`{e} stata identificata come pregiudizievole al raggiungimento di una soddisfacente maturit\`{a} del progetto. L'attivit\`{a} di ricerca descritta in questa tesi di dottorato ha come obiettivo la caratterizzazione dei principali fenomeni MHD nel WCLL blanket, in particolare riguardo alla stima della perdita di carico e dello scambio termico con il refrigerante. La tesi \`{e} divisa in due parti principali. La prima parte, discussa nella Parte \ref{part:companalysis}, copre l'analisi comparata di diverse configurazioni alternative per il percorso del PbLi all'interno del Vaacum Vessel (VV). L'obiettivo principale di questa analisi \`{e} l'identificazione della configurazione con il maggior potenziale, la quale verr\`{a} poi ulteriormente sviluppata nelle successive fasi del progetto del blanket. I criteri considerati sono stati l'entit\`{a} della perdita di carico MHD, la semplicit\`{a} del percorso idraulico, la facilit\`{a} di integrazione con gli altri sistemi di DEMO e la capacit\`{a} di soddisfare i requisiti del Remote Maintenance. Nella seconda parte, descritta nella Parte \ref{part:numericalmodeling}, l'effetto del campo magnetico sullo scambio termico \`{e} studiato con l'ausilio di codici numerici per alcuni casi prototipici sviluppati a partire da due delle configurazioni analizzate nella prima parte della tesi. Il codice di Fluidodinamica Computazione (CFD) ANSYS CFX \`{e} utilizzato per questo scopo e, all'interno della tesi, \`{e} sottoposto a un approfondito processo di validazione articolato in numerosi benchmark per i pi\`{u} comuni flussi MHD. Quattro diverse configurazioni del WCLL (identificate dalle sigle T01.A, T01.B, T02 e T03) sono analizzate nel contesto dell'analisi comparata per evidenziare l'effetto sulla perdita di carico MHD di differenti direzioni preferenziali per il flusso, schemi di distribuzione e raccolta del metallo liquido, geometria del sistema di refrigerazione e disposizione degli elementi strutturali. Un'analisi dettagliata del percorso del PbLi \`{e} eseguita per evidenziare elementi geometrici critici e strategie alternative per la minimizzazione della perdita di carico. Lo studio \`{e} suddiviso secondo le principali regioni idrauliche identificate nel percorso del PbLi: il feeding pipe, il manifold, la breeding zone e il draining pipe. La stima della perdita di carico \`{e} effettuata attraverso correlazioni disponibili in letteratura per la valutazione dei termini bidimensionali e tridimensionali. L'effetto dell'attrito viscoso e delle forze inerziali \`{e} invece trascurato, seguendo la trattazione pi\`{u} comune per flussi MHD ad elevata intensit\`{a} del campo magnetico. Una completa descrizione della metodologia adottata nello studio \`{e} presentata nel Capitolo \ref{sec:companalysismeth}. Nel Capitolo \ref{sec:feeddrain}, il feeding e il draining pipe sono il focus dell'analisi. I risultati dell'analisi hanno dimostrato come il massimo della perdita di carico sia localizzato nel feeding e draining pipe, ossia gli elementi di connessione tra il percorso del PbLi all'interno del VV e il loop principale dislocato al di fuori di questo, dove \`{e} concentrata tutta la portata in ingresso (o uscita) dal segmento di blanket e il metallo liquido raggiunge velocit\`{a} di diversi cm/s. Lo schema di carico e scarico adottato dal blanket ha un effetto significativo sulla perdita di carico, giacch\'{e} i vincoli imposti dal Remote Maintenance sulla dimensione del condotto sono pi\`{u} permissivi per la VV upper port rispetto alla lower port. Malgrado uno schema di carico attraverso quest'ultima sia preferibile per semplificare il percorso idraulico all'interno del blanket, la necessit\`{a} di utilizzare un condotto con diametro massimo di 80 mm rende questo approccio impossibile da adottare a meno di revisioni consistenti nel progetto della lower port o tramite il disaccoppiamento elettrico del flusso di metallo liquido dal feedign pipe utilizzando appositi Flow Channel Inserts (FCIs). In aggiunta, l'attuale loop del PbLi adotta una pressione di progetto uguale a 4.6 MPa, insufficiente per sopportare il massimo valore (18 MPa) previsto per il transitorio accidentale dell'in-box LOCA, uno dei design basis accidents del blanket, e una revisione di questo parametro comporterebbe un sensibile incremento nello spessore della parete del condotto. Data la grande sensibilit\`{a} della perdita di carico su questo parametro, l'utilizzo di feeding e draining pipe privi di un isolamento elettrico, come attualmente previsto nel WCLL, potrebbe non essere fattibile in condizioni pi\`{u} realistiche di quelle attualmente considerate nell'ambito del design del blanket. Nel Capitolo \ref{sec:pblimani,sec:breedzone}, il manifold e la breeding zone sono il focus dell'analisi. Il flusso nel manifold e nella breeding zone \`{e} meno importante in termini di perdita di carico, ma \`{e} in ogni caso caratterizzato da importanti fenomeni che impattano direttamente la distribuzione del metallo liquido e che devono essere investigati; in particolare, l'accoppiamento elettromagnetico tra canali in contatto elettrico e la presenza di elementi geometrici complessi. Caratterizzare questi fenomeni \`{e} necessario per localizzare dove il fluido potrebbe accumularsi e stagnare: questo comporterebbe rilevanti problemi di sicurezza dovuti all'accumulo del trizio e alla sua permeazione nel refrigerante. Elementi geometrici che sono relativamente poco caratterizzati e che rivestono un ruolo fondamentale nel percorso idraulico del WCLL sono gli orifizi, curve con variazione di area di passaggio e flusso attorno ad ostacoli. Giacch\'{e} il fluido si muove a basse velocit\`{a}, l'influenza delle forze di galleggiamento sulla fluidodinamica e lo scambio termico vanno attentamente considerati. Malgrado la configurazione con le minori perdite di carico sia la T02, la configurazione ad avere il miglior potenziale per il successivo sviluppo del blanket \`{e} la T01.A grazie alla sua maggiore stabilit\`{a} meccanica, flessibilit\`{a} nel variare il collegamento con il loop del PbLi e relativamente basse perdite di carico nel manifold e nella breeding zone. Tuttavia, alcune incertezze sono emerse nel corso dell'analisi, le quali meriteranno ulteriore studio nei prossimi anni: il complesso schema di distribuzione, che utilizza un complesso sistema composto di tre manifold (uno dei quali costituito da due insiemi di stretti canali rettangolari che corrono per tutta l'altezza del blanket), e l'effetto delle forze di galleggiamento sul flusso e lo scambio termico nella breeding zone, specialmente nel contesto del flusso intorno ai tubi di refrigerazione. Per studiare l'effetto del campo magnetico sullo scambio termico, due modelli numerici sono stati creati per investigare il flusso in due configurazioni prototipiche rappresentative rispettivamente della breeding zone di T01.A e T02. Il codice CFD ANSYS CFX \`{e} stato utilizzato a questo scopo. Nel Capitolo \ref{sec:cfx}, cinque benchmark sono impiegati per validare il codice per casi di magneto-idraulica (convezione forzata MHD), magneto-convezione (convezione naturale MHD) e flussi MHD a superficie libera. Soluzioni analitiche e dati sperimentali sono utilizzati per dimostrare la fisicit\`{a} dei risultati ottenuti dal codice. Due casi di magneto-idraulica sono utilizzati per validare il codice, un problema bidimensionale e uno tridimensionale, entrambi proposti da Smolentsev et al. \cite{smolentsev2015approach}. Per il problema bidimensionale, il flusso completamente sviluppato in un canale rettangolare con pareti perfettamente isolate (flusso di Shercliff) e nello stesso canale con pareti di Hartmann perfettamente conduttive (flusso di Hunt-II) \`{e} simulato per un'intensit\`{a} del campo magnetico fino a Ha=104Ha=10^4 con un errore massimo del 2\% sulla portata adimensionale. Per il problema tridimensionale, il flusso in un condotto circolare sottoposto a un campo magnetico non uniforme \`{e} considerato, prendendo a modello l'esperimento descritto nelle Refs. \cite{reed1987alex,picologlou1989experimental}. Il codice riproduce con buona qualit\`{a} i dati sperimentali, mostrando un margine d'errore consistente con quanto riportato in letteratura da altri codici simili. Due casi di magneto-convezione sono trattati per il flusso completamente sviluppato in un canale rettangolare verticale e infinitamente alto sottoposto a riscaldamento differenziale e interno. I risultati del codice sono confrontati con la soluzione analitica proposta da B\"{u}hler \cite{buhler1998laminar}, dimostrando un'eccellente accuratezza. Come ultimo benchmark, un flusso completamente sviluppato a superficie libera per un condotto inclinato con substrato isolato \`{e} simulato fino ad Ha=103Ha = 10^3 dimostrando una buona accuratezza con la soluzione analitica sviluppata da Shishko \cite{shishko1993theoretical}. Nel Capitolo \ref{chap:forcpipe}, il flusso in convezione forzata intorno a un cilindro transversale \`{e} studiato come rappresentativo della breeding zone della configurazione T01.A. Realistiche condizioni al contorno elettromagnetiche, quali il campo magnetico inclinato e pareti del condotto con spessore non uniforme, sono impiegate per aumentare l'accuratezza del modello. Il caso \`{e} analizzato nello spazio dei parametri Re=20÷80, Ha=0÷100, α=0÷32, and co=0÷Re=20\div80, \ Ha = 0\div100, \ \alpha = 0\div32^{\circ}, \ \mathrm{and} \ c_o = 0\div \infty, dove α\alpha \`{e} l'inclinazione del campo magnetico sull'asse dell'ostacolo e coc_o \`{e} il rapporto di conducibilit\`{a} caratteristico dell'ostacolo. Lo scambio termico aumenta con l'aumentare di HaHa a causa della promozione del flusso nel sotto-canale inferiore, dove correnti indotte nel sotto-canale nella parte superiore dell'ostacolo penetrano e tendono a generare forze di Lorentz non resistive, con conseguente incremento localizzato della velocit\`{a} media rispetto al caso puramente idrodinamico. Tuttavia, il regime di efflusso attorno all'ostacolo \`{e} gradualmente soppresso all'aumentare di HaHa e assume le caratteristiche di un creeping flow per HaHa \rightarrow \infty. La conducibilit\`{a} dell'ostacolo e l'inclinazione del campo magnetico hanno un'influenza secondaria sullo scambio termico e la perdita di carico, malgrado alterino in maniera sensibile la fluidodinamica del problema. Il valore della perdita di carico tridimensionale \`{e} stimato e si osserva che la sua dipendenza da HaHa sembra essere pi\`{u} debole rispetto alla componente bidimensionale, la quale tende a dominare la perdita di carico totale all'aumentare di HaHa. Una correlazione per predire il valore della perdita di carico tridimensionale ad HaHa pi\`{u} elevati di quelli considerati in questo studio \`{e} proposta a partire dai dati numerici raccolti. Un'estensione dell'analisi al flusso in convezione mista e per geometrie pi\`{u} complesse, per esempio cilindri multipli ravvicinati, \`{e} consigliabile per caratterizzare completamente questo problema. Nel Capitolo \ref{sec:mixedConvectionChapter}, la convezione mista per un flusso ascendente in presenza di ostacoli curvi trasversali \`{e} analizzato nel contesto dello scambio termico tra il PbLi e il sistema di refrigerazione della breeding zone per la configurazione T02. L'analisi \`{e} focalizzata su un singolo elemento refrigerante (due tubi a U annidati) per il canale vicino alla FW, cio\'{e} la zona maggiormente sollecitata dal punto di vista termico, in condizioni puramente idrodinamiche (Ha=0Ha=0) e magnetoidrodinamiche (Ha=8.5103Ha = 8.5 \cdot 10^3). Il riscaldamento non-uniforme nel canale \`{e} modellato con una funzione esponenziale decrescente con valore medio Q=6.7 MW/m3Q = 6.7 \ \mathrm{MW/m^3}, il quale corrisponde a Gr=5.761010Gr = 5.76 \cdot 10^{10}, e le superifici confinanti il metallo liquido sono ipotizzate avere conducibilit\`{a} infinita. Il sistema di refrigerazione funziona in maniera accettabile in condizioni idrodinamiche grazie all'efficiente scambio termico promosso dal regime turbolento innescato dalle forze di galleggiamento. La transizione al regime MHD comporta la soppressione della turbolenza e il degrado dello scambio termico; la temperatura massima del PbLi nel canale supera i 1000 K, chiaramente incompatibile con i requisiti per il funzionamento dei materiali strutturali (Tmax823 KT_{\mathrm{max}}\leq 823 \ \mathrm{K}). Per ridurre la temperatura nel PbLi, il pitch verticale tra elementi di refrigerazione viene ridotto da 60 a 40 mm e un moderato flusso termico (100 kW/m2100 \ \mathrm{kW/m^2}) dovuto alla refrigerazione passiva della BZ da parte del sistema di raffreddamento della FW \`{e} introdotto, portando la temperatura massima nella cella a T820 KT\approx 820 \ \mathrm{K}. Modifiche al layout dei tubi potrebbero portare a un ulteriore incremento nelle performance del sistema di refrigerazione. In ogni caso, garantire la refrigerazione del condotto sembra essere particolarmente complicato, anche considerando condizioni al contorno elettromagnetiche meno conservative di quelle ipotizzate in questo studio, a causa dei limiti imposti nella struttura degli elementi di rinforzo del blanket e dei tubi da parte delle tecniche di manufacturing.One of the key components of a thermonuclear fusion reactor is the breeding blanket, which fulfills the essential functions of power extraction, tritium breeding, and shielding for radiation-sensitive components and personnel. Liquid metals, like the eutectic alloy lithium lead (PbLi), are considered attractive blanket working fluids due to their combination of excellent thermal properties, high boiling temperature, and tritium breeding capabilities. However, they are characterized also by less desirable features, one of which being the elevate electrical conductivity that results in the reactor intense magnetic field influencing the fluid motion in multiple and subtle ways. In such conditions, the liquid metal behavior can only by described by the governing equations of magnetohydrodynamics (MHD). The transition to the MHD regime is accompanied by several effects including, but not limited to, increased pressure losses due to resistive Lorentz forces, turbulence suppression, modified mass and heat transport mechanisms, etc. A complete understanding of these phenomena is of paramount importance to accurately assess the blanket performances and to realize a design able to fulfill the reactor requirements. The Water Cooled Lithium Lead (WCLL) breeding blanket is one of the two concepts actually being studied for implementation in the DEMOnstration Fusion Power Plant (DEMO) reactor within the framework of the R\&D activities coordinated by the EUROfusion consortium. This concept relies on the separate-cooled architecture, where the liquid metal is utilized exclusively as tritium breeder and neutron multiplier, whereas the role of coolant is fulfilled by pressurized water that, being a non-electrically conductive fluid, is not influenced by the MHD effects. Even if the liquid metal velocity can be minimized to a value determined only by the tritium management requirements, thus reducing the electromagnetic pressure losses compared with blanket where the liquid metal fulfills also the role of coolant, MHD phenomena are still going to drive the blanket design. Despite the importance of a full understanding of these aspects, in the past years only few research activities have been focused on the MHD phenomena occurring in WCLL concept and this was identified as a significant drawback for the blanket design hindering the achievement of a satisfying design maturity. The research activity described in this PhD dissertation has the objective to characterize the basic MHD phenomena for the WCLL blanket with regard to pressure losses and heat transfer with the coolant. The dissertation is divided in two main parts. The first part, described in \Cref{part:companalysis}, concerns a comparative analysis of several alternative configuration for the PbLi in-vessel flow path. The analysis is conducted to identify the solution with most potential for further optimization in the blanket development cycle. The main criteria adopted are MHD pressure losses minimization, flow path simplicity, ease of integration with the other reactor systems, and compliance with the remote maintenance requirements. Successively, in \Cref{part:numericalmodeling}, the effect of the magnetic field on the heat transfer is studied through numerical modeling of prototypical cases derived from the blanket configurations studied during the comparative analysis. The Computational Fluid Dynamics (CFD) code ANSYS CFX is used for this purpose and its thorough validation for several MHD benchmarks is a core part of the modeling section. Four PbLi in-vessel flow path configurations (T01.A, T01.B, T02, and T03) are studied in the comparative analysis, investigating the effect of different preferential flow orientation, distribution and feeding scheme, cooling system layout, and structural elements arrangement on the MHD pressure losses. A detailed analysis of the PbLi path for each configuration is carried out, identifying possible critical elements and investigating alternative strategies to minimize the pressure drop for the liquid metal evolution. The study is divided according to the four main hydraulic regions of the flow path: feeding pipe, manifold, breeding zone, and draining pipe. Pressure drop correlations available in the literature are used for the estimate of both the two-dimensional and three-dimensional pressure drop term, whereas inertial and viscous effects are neglected. A detailed overview of the methodology adopted is available in \Cref{sec:companalysismeth}. In \Cref{sec:feeddrain}, the analysis results have highlighted how the bulk of the pressure drop is localized within the connection pipes with the PbLi ex-vessel loop, where the highest flow rate in the blanket is concentrated and velocity up to several cm/s is encountered. The routing scheme adopted for the feeding and draining pipe is found to significantly impact the pressure drop due to the different pipe size allowed by the remote maintenance constraints set upon the lower and upper vacuum vessel port. Although a routing through the former would be preferable due to the easier integration with the PbLi path in the blanket, the impossibility to accommodate a feeding pipe larger than 80 mm makes this approach unfeasible without recurring to electrically insulating flow channel insert (FCI) or coatings to minimize the pressure losses in the component. Moreover, the current PbLi ex-vessel loop design adopts a reference pressure of just 4.6 MPa, well below the maximum assumed value reached during the in-box LOCA transient (18 MPa). Since the wall thickness effect on the pressure losses is of paramount importance, the feasibility of feeding and draining pipes without electrical insulation for the WCLL is questionable and their layout is in need of urgent revision. In \Cref{sec:pblimani,sec:breedzone}, the flow in the manifold and the breeding zone is less impor
    corecore