Scott D. Sudhoff - Power Magnetic Devices
Здесь есть возможность читать онлайн «Scott D. Sudhoff - Power Magnetic Devices» — ознакомительный отрывок электронной книги совершенно бесплатно, а после прочтения отрывка купить полную версию. В некоторых случаях можно слушать аудио, скачать через торрент в формате fb2 и присутствует краткое содержание. Жанр: unrecognised, на английском языке. Описание произведения, (предисловие) а так же отзывы посетителей доступны на портале библиотеки ЛибКат.
- Название:Power Magnetic Devices
- Автор:
- Жанр:
- Год:неизвестен
- ISBN:нет данных
- Рейтинг книги:4 / 5. Голосов: 1
-
Избранное:Добавить в избранное
- Отзывы:
-
Ваша оценка:
- 80
- 1
- 2
- 3
- 4
- 5
Power Magnetic Devices: краткое содержание, описание и аннотация
Предлагаем к чтению аннотацию, описание, краткое содержание или предисловие (зависит от того, что написал сам автор книги «Power Magnetic Devices»). Если вы не нашли необходимую информацию о книге — напишите в комментариях, мы постараемся отыскать её.
Discover a cutting-edge discussion of the design process for power magnetic devices Power Magnetic Devices: A Multi-Objective Design Approach
Power Magnetic Devices
Power Magnetic Devices — читать онлайн ознакомительный отрывок
Ниже представлен текст книги, разбитый по страницам. Система сохранения места последней прочитанной страницы, позволяет с удобством читать онлайн бесплатно книгу «Power Magnetic Devices», без необходимости каждый раз заново искать на чём Вы остановились. Поставьте закладку, и сможете в любой момент перейти на страницу, на которой закончили чтение.
Интервал:
Закладка:
Using this algorithm, as the population evolves, it will come closer and closer to approaching the Pareto‐optimal set, which will lead to a family of designs. We will use multi‐objective optimization extensively in this book for the design of power magnetic devices.
1.9 Formulation of Fitness Functions for Design Problems
The previous sections of this chapter have focused on the design process, and some general‐purpose single‐ and multi‐objective optimization techniques. In this section, we consider methodologies to construct fitness functions.
In constructing the fitness function, we will have a variety of metrics, such as mass and loss, and also a number of constraints related to the appropriate operation and construction of the device of interest. It will often be the case that we will have to perform multiple analyses in order to evaluate metrics, and that some of these analyses may be computationally expensive. The fact that a variety of analyses of varying computational intensity will be required will be a significant consideration in the construction of the fitness function.
Let us begin our discussion of the construction of the fitness function with consideration of the constraints. Let us assume that we have C constraints, and use c ito denote the status of the i th constraint. If the constraint is satisfied, we will set c i= 1. If the constraint is not satisfied, we will have 0 ≤ c i< 1. It is convenient to define c iso that it approaches 1 as the constraint becomes closer to becoming satisfied.
In order to test constraints, it is convenient to define the less‐than‐or‐equal‐to and greater‐than‐or‐equal‐to functions as
(1.9-1)
(1.9-2)

Figure 1.21 Constraint functions.
These functions are illustrated in Figure 1.21.
As an example, we may require the height of a transformer to be less than a maximum value h mx. If this is the first constraint and if we use h ( x) to represent the height in terms of our design parameters, our first constraint could be calculated as
(1.9-3)
Next, let us consider our design metrics. The design metrics will also be a function of the parameter vector x. In this text, common metrics will be mass and loss. Let the number of metrics be denoted M , and the value of the i th metric be denoted m i. It will henceforth be assumed that all metric values are greater than zero.
As we will see, metrics and objectives are closely related but not synonymous. Metrics will be based on attributes of interest. Objectives will be based on the metrics, but also be influenced by constraints.
Let us now discuss the definition of the objective or fitness function. In keeping with the usual practice of GAs, we will assume that our fitness function (which is synonymous with the objective function) is of a form to be maximized. One approach to creating a fitness function begins with first forming a combined constraint. This can be done by averaging the constraints as
(1.9-4)
Next, the elements of the fitness function are defined as either
(1.9-5)
or
(1.9-6)
where ε is a small positive number. The value has no impact on results but is convenient for plotting the fitness versus generation. It is commonly chosen to be on the order of 10 −10.
With this definition, designs that do not meet all constraints have negative fitness, while designs that do meet all constraints have positive fitness. If the constraints are not met, the fitness increases (becomes less negative) as the constraints become closer to being met. Note that the metric in the denominator in (1.9-6)does not pose a risk of a singularity because for most cases the metrics cannot be zero if all constraints are met. For example, a workable inductor design will have nonzero mass. Also, observe that all elements of the fitness function are negative (and equal) in the case where one or more constraints are not met; all elements of the fitness function are positive (and generally speaking not equal) if all of the constraints are met.
While the use of (1.9-5)and (1.9-6)is convenient for many design problems, there are cases when certain calculations are nonsensical unless constraints are met. There are also cases where certain calculations are computationally expensive, and there is a desire to avoid them if possible. For example, if predicting loss were computationally expensive, and that it is already known that not all constraints are passed, then there is little motivation to proceed with the loss calculation. Table 1.6contains pseudo‐code to treat this case. Therein, C Iand C sdenote the number of constraints imposed and satisfied, respectively, thus far in the current evaluation of the fitness function. Both of these quantities are initialized to zero. After the constraint in question is calculated, the number of constraints imposed and number of constraints satisfied are updated. If the number of constraints satisfied falls below the number of constraints imposed, the fitness is calculated based on the number of constraints satisfied, and no further action (calculation of further constraints or metrics) is taken. This can lead to a significant computational savings for some problems.
Table 1.6 Approach for Treating Constraints
calculate constraint c i C I= C I+ 1 C S= C S+ c i if ( C S< C I) ![]() return end |
The code block shown in Table 1.6is repeated sequentially for every constraint. After all constraints are tested, the metrics may be calculated and the fitness assigned as in (1.9-5)and (1.9-6)for the case when all constraints are met. There are also variations of this procedure. For example, it may be convenient to calculate and test several constraints at a time.
1.10 A Design Example
In this section, we will conclude this chapter with a design example. In particular, we will endeavor to design a UI‐core inductor using an optimization‐based design process. At this point, we have not studied any magnetics or magnetic devices. This will be the subject of the remainder of this book. Since we are not yet in a position to derive or understand the relationships needed, an elementary analysis will be provided and the reader is asked to simply accept these relationships at face value for the time being. It should be observed that the analysis used to derive the needed relationships is very simplistic, but this does not matter because our purpose here is only to look at the design process. We will conduct a much more detailed analysis and design in subsequent chapters.
Читать дальшеИнтервал:
Закладка:
Похожие книги на «Power Magnetic Devices»
Представляем Вашему вниманию похожие книги на «Power Magnetic Devices» списком для выбора. Мы отобрали схожую по названию и смыслу литературу в надежде предоставить читателям больше вариантов отыскать новые, интересные, ещё непрочитанные произведения.
Обсуждение, отзывы о книге «Power Magnetic Devices» и просто собственные мнения читателей. Оставьте ваши комментарии, напишите, что Вы думаете о произведении, его смысле или главных героях. Укажите что конкретно понравилось, а что нет, и почему Вы так считаете.