summaryrefslogtreecommitdiff
path: root/generator.py
blob: 0e8da8b10255736d947a6498e710a691730c099e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# This file is part of Marius Peter's airfoil analysis package (this program).
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <https://www.gnu.org/licenses/>.
"""
The 'generator' module contains a single Population class,
which represents a collection of randomized airfoils.
"""

import creator as cr


class Population(cr.Airfoil, cr.Spar, cr.Stringer):
    """Collection of random airfoils."""

    def __init__(self, size):
        af = cr.Airfoil
        # print(af)
        self.size = size
        self.gen_number = 0  # incremented for every generation

    def mutate(self, prob_mt):
        """Randomly mutate the genes of prob_mt % of the population."""

    def crossover(self, prob_cx):
        """Combine the genes of prob_cx % of the population."""

    def reproduce(self, prob_rp):
        """Pass on the genes of the fittest prob_rp % of the population."""

    def fitness():
        """Rate the fitness of an individual on a relative scale (0-100)"""
Copyright 2019--2024 Marius PETER