Advancements on Optimization Algorithms Applied to Wave Energy Assessment: An Overview on Wave Climate and Energy Resource
Abstract
:1. Introduction
- A recent study by Mares-Nasarre et al. [22] resorted to an explicit ANN-derived formula for estimating overtopping layer thickness and overtopping flow velocity on rubble-mound breakwaters, subjected to depth-limited wave breaking conditions. A total of 235 2D experimental tests were performed to obtain data for developing the ANN-based formulae, from which it was found that the Iribarren number and dimensionless crest freeboard were the key variables;
- Schmitt et al. [23] configured a numerical wave tank within OpenFOAM through the application of ANNs, mainly to approximately “solve” the Navier-Stokes equations and obtain nonlinear tank transfer functions required for the wavemaker. In total, 800 out of 1000 samples of wavemaker input were applied to train the ANN (80-20 training-validation ratio), during which a mean square error (MSE) was used as the loss function. The ANN was composed of two hidden layers with 310 nodes, to which were added the input and output layers. The hyperbolic tangent (tanh) and linear activation functions (AFs) were used for 350 training epochs. Details on the software (Python) and hardware can be found in [23]. As a result, a fast and reliable prediction of the desired waves, which were measured via a numerical wave gauge, was obtained;
- Guo et al. [24,25] employed a long short-term memory (LSTM)-based machine learning model, a type of recurrent neural network (RNN), to predict future surge and heave motions of a semi-submersible. A step-decay algorithm was used for the learning rate schedule, set at 0.01 for the first 10 epochs, followed by a decayed rate of 0.1 for every 50 epochs (200 maximum). Two LSTM layers with 200 output layer neurons were configured, which incorporated five fully connected blocks of 80 neurons each. The tanh was the AF, while the Adaptive Moment Estimation (Adam) optimizer was selected. A high degree of correspondence was obtained (~90%), and it was found that, for any single point prediction, the outputs from the LSTM model followed a Gaussian distribution;
- Sirigu et al. [26] resorted to a genetic algorithm (GA) combined with a boundary element method code to perform a holistic optimization of the PeWEC device [27]. Several bounded study variables were considered for optimization, including the hull (6), the PTO (2) and the pendulum component (5). As objectives, three fitness functions were defined—minimize capital expenditures over productivity, maximize the capture width ratio (CWR) and mitigate manufacturing/weight costs—resulting in a multi-objective Pareto optimal set. GA convergence was achieved after less than 120 generations. The results point to significant, yet diverging gains, in the sense that beneficial design alterations that increase the CWR, for instance, may cause a detrimental cost increment (to which minimization priority is given);
- A more concrete application can be found in the recently established partnership between EMEC and H2GO Power, HyAI [28], where offshore renewables (including wave energy) are deployed towards electricity generation for hydrogen production. To optimize the operations, an AI software-controlled hydrogen storage technology is employed for data-driven asset management decisions in real time.
2. Algorithm Overview
2.1. Indirect Algorithms
2.1.1. Neural Networks
2.1.2. Random Forests
2.1.3. Support Vector Machines
2.2. Direct Algorithms
2.2.1. Evolutionary Algorithms
- Generate an initial population of individuals/candidate solutions found within the search space;
- Iteratively perform three tasks—evaluate an objective/fitness function for each individual, select the most “fit” individuals and apply variation operators to them in order to create a new generation of individuals towards an optimal solution;
- Execute the iterative process over various generations until the stopping criterion is met.
- Selection—as mentioned previously, the individuals with the best fitness function scores, or “parents”, are selected for producing the next generation, or “children”. To that end, fitness scaling can be applied, initially, so that an adequate comparison can be established. As a follow-up, a selection function is used to determine which individuals will be the parents of the next generation. Distinct rules can be applied, such as stochastic uniform, remainder, roulette or tournament. This is usually conducted with a ranking system (highest sorted fitness scores), but a top system (a fixed number of selected individuals with equally set scores) can be employed as an alternative. It is worth noting that the top system, albeit more straightforward in selecting fit individuals, promotes less diversity than the ranking system;
- Reproduction—the selected parent individuals are conjugated to “reproduce” children of the next generation, analogous to the biological reproduction process found in nature. Even so, it may be of interest to keep some of the parents with the best fitness scores for the following generation, or “elite children”. They should be carefully defined, though, as an excessive amount may lead to unwanted dominance over the remaining population, thus reducing the algorithm’s effectiveness. To that end, a crossover fraction is established, whose value defines the percentage of newly created individuals, aside from the elite children, and depends on the case study characteristics. Reference fractions will be provided along this paper;
- Mutation and crossover—two key processes associated with reproduction, mutation and crossover promote the creation of non-elite children solutions distinguishable from their parents. Crossover children result from direct “reproduction” between two parents, where the respective “genes” are combined into a new configuration (e.g., a new vector entry of parameters). Numerous options exist for performing crossover, such as single-point or two-point swapping of vector entries at a given index(es), or even by applying a heuristic or scattered approach, among others. As for mutation, it is a process that also mimics the natural mutations that occur in genes. In GAs, mutation is applied to one individual in each pair of parents. A random change in the parent’s “genes” occurs (e.g., randomly changing a value in the vector entry of parameters). The mutation can be controlled through an uniform, Gaussian or adaptable function, among others, and is transmitted to the children. While mutation promotes diversity within the population, prompting the existence of potentially “fitter” individuals, crossover ensures the transmission and recombination of the best “genes” from the parent generation to the children generation.
2.2.2. Swarm Intelligence
- Initialize a random set of swarm particles within the search space, each with an inherent initial position x0 and velocity v0 vectors;
- Define and compute a fitness function to evaluate each particle, at its current position. This initial evaluation is to be repeated iteratively afterwards, as each particle’s new position should be assessed and compared, in terms of fitness, with its best previous position. Therefore, the best position is updated only if the current position yields a better fitness than the previous best;
- At each time-step t, update the position xt and velocity vt vectors of each particle. Its new position results from the previous position xt−1 adjusted by a new velocity vector. Aside from the previous velocity vt−1—inertial term—this vector considers the particle’s best fitness history Pb (and inherent position and velocity)—cognitive/personal term—as well as the best fitness/position/velocity found within the swarm gb—social term. It is worth noting that each of these three terms is weighted by a hyperparameter, and tuning them presents a pivotal challenge in each case study;
- Evaluate the best global fitness from the personal best of each particle in the swarm. This should be executed in conjunction with the previous step, so that the particles’ new positions can be updated. The global best should then be assessed through a termination criterion: should the result meet the termination target, then the algorithm stops, and the best solution is provided. Otherwise, the algorithm carries on with the previous steps, iteratively, until the termination criterion is met.
2.2.3. Fuzzy Logic
- Fuzzification—the input data, also designated as “crisp” inputs, are introduced into the algorithm and subjected to a fuzzification procedure that converts it into fuzzy datasets/variables. This is achieved through implementing membership functions, from which a membership degree can be attributed to the input. Such a degree is usually bounded by an upper and lower limit (e.g., 0 and 1), but it can be any value in between (e.g., 0 < degree < 1) and represents the degree of partial truth inherent to FL. The degree of a given input is a combination of each membership value that intercepts, vertically, one or more user-defined membership functions, which can be triangular, gaussian, trapezoidal or sigmoid in shape, among others;
- Fuzzy inference with operators—following on the fuzzification process, the fuzzy variables are passed through a set of user-defined rules (e.g., IF-THEN) controlled by logical operators. The original Boolean operators, such as AND, OR and NOT, are substituted with corresponding fuzzy operators: Min(input), Max(input) and 1-Input (note that the input, here, is the fuzzy variables). This allows for the output fuzzy variables to be inferred from the input fuzzy variables, as the former are required for the next step;
- Defuzzification—the inferred fuzzy variables are used, here, to obtain the final output crisp values. Each fuzzy variable is introduced into a new set of user-defined membership functions—trapezoidal, triangular or other shapes. There are numerous methods to apply defuzzification, such as Bisector, Smallest/Middle/Largest of Maximum or Centroid, although the latter is more commonly used. They “fill up” each membership function, based on the degree of membership to each, and one of the defuzzification methods is applied to acquire the final crisp values.
3. Applications of AI-Based Algorithms to Wave Energy Studies
3.1. Introduction
3.2. Neural Networks Applied to Wave Propagation, Prediction and Energy Resource Estimation
Ref. | Input Parameters | Output Parameter | Method | Algorithm |
---|---|---|---|---|
[64] | , Wind Speed , Wind Direction , Wind Gust | NN | ANN, (LM, CG, BR) | |
[65] | , and | NN, SVM | ANN, SVM | |
[66] | , , Atmospheric pressure (Atm), Air Pressure (), Water Temperature | Wave Power | NN, EA | CFNN + GEP |
[67] | Wave spectra | , Excitation Force | NN, Regression | NAR, GMDH and LSTM |
[80] | , | NN, SVM, Regression | AIRS, ANN, BN, SVR, M5P, RST | |
[69] | (3-6-12-24 h average) | NN | RNN (NARX) | |
[70] | , Month, Air to sea temperature difference, Water Depth d, (6-12-18 h), Atm | NN, SVM | ELM, SVR | |
[71] | Lat/long, , Month, Air to sea temperature difference, d, (6-12-18 h), Atm | NN | MRAN and GAP-RBF (MRAN) + Growing and Pruning RBF network | |
[81] | , , Lagoon length and depth, Reef top width and depth | NN + Numerical | Bayesian belief network, SWAN | |
[77] | (from SWAN, which used , ), Wave direction , , , Ocean currents | , | NN, SVM, Numerical | ANN (MLP) and SVM compared with SWAN |
[82] | , and , Atm | NN | EOFWNN | |
[78] | , , | NN + Numerical | NWPS versus ANN (non-linear autoregressive) | |
[83] | (30 min) | NN, RF | ELM, Random Forest | |
[84] | (30 min), Maximum , , Zero Up-crossing wave period , d, Sea Surface Temperature (SST) | NN, Regression | MLR optimized by CWLS | |
[85] | NN | ELM, CNN, RNN, M5tree, MLR-ECM, and MLR | ||
[86] | , SST, Salinity, Currents, d | , SST | NN, SVM, Regression | GRU-DNN, SVR, and ARIMA |
[87] | Maximum, minimum and mean , standad deviation | NN, Regression | CRBM-DBN, ARMA, BPNN | |
[73] | Ocean Images, | NN | CNN, CNN-LSTM | |
[68] | , Average T, Atm, Air temperature , , Humidity, Omega vertical velocity | , Wave Power | NN, SVM | MTEANNm ELM, SVR |
[21] | and , , Humidity, Omega vertical velocity, , Rain | , Wave Power | NN | MTEANN |
[88] | Wave train | NN | LSTM | |
[89] | , T, d, and , , Humidity, Atm, Water temperature, Salinity | NN, SVM, RF | LSTM/PCA, LR, RT, SVM and GPR | |
[74] | , , , , Average T, Atm, , SST | NN | LSTM/FCL, seqtoseq LSTM, SGD, RMSProp, Adam, and AMSGrad | |
[75] | , , , , Average T, Atm, , SST | NN | LSTM, RNN, and epoch-scheduled seqtoseq with Adam and AMSGrad | |
[90] | NN, SVM, Numerical | SWAN, ANN, ELM and SVR | ||
[76] | , , d, and | , , | NN + Numerical | SWAN combined with ANN |
[91] | , , Wave periods of the second and first moment of the energy spectrum | , | NN | GMDH and ANN |
[72] | , Wave period of the second moment of the energy spectrum, standard deviation | NN | DNN | |
[92] | , d, Atm, , , SST, (20 min), Dew point | , , | NN | LSTM |
[93] | Maximum, minimum and mean , standard deviation, d | NN, SVM | STL–CNN–PE, ANN, ELM, SVR, LSTM, CNN; EMD-LSTM | |
[79] | NN, SVM, RF | RF, SVR and ANN |
3.3. Neural Networks Applied to Extreme Wave Events and Climate Change
Ref. | Input Parameters | Output Parameter | Method | Algorithm |
---|---|---|---|---|
[95] | NN | NWT | ||
[96] | (3 h) | NN + Numerical | ANN + MIKE21 SW | |
[97] | NN, EA | GA + LS + ANN | ||
[98] | NN, EA | GA + LS + ANN | ||
[99] | (1 h), , T, Atm, , Water Temperature, Dew point | NN, SVM, RF | SVM, ANN, RF | |
[100] | Hurricane intensity and center (location and pressure), Atm, , , | NN + Numerical | ANN + Numerical model | |
[101] | Typhon location, Pressure at centre, Radius, speed and intensity, Atm, , Dew point, humidity, , precipitation (quantity and duration), , ground solar radiation, , , Average and maximum T, d, SST | NN, SVM | ANN, SVR | |
[102] | Typhon central minimal pressure, Near centre maximum wind speed, Storm radius for winds ≥ category 7. , , , , , Atm, precipitation hours | NN | DRNN, MLP, DNN | |
[103] | , Temperature, Dew point, humidity, Maximum and mean and , Precipitation (quantity and duration), , Radar reflectivity images | NN | RNN (GRU) + CNN | |
[19] | , , d, Tide, Storm surge, Sea level rise | , | NN + Numerical | Delft3D-Wave + ANN |
[104] | , , | NN | RNN (BiGRU) |
3.4. Applications of Non-NN Algorithms
Ref. | Input Parameters | Output Parameter | Method | Algorithm |
---|---|---|---|---|
[112] | Regression | ARMA/AR | ||
[105] | (3 h), , | , | Fuzzy, ANN | FIS + ANFIS |
[106] | , , , , , Average T, d, Atm, , SST | SVM, EA | GGA-ELM, SVM | |
[107] | , , , , , Average T, d, Atm, , SST | , Wave Power | EA | GGA-ELM |
[108] | , , , , , Average T, d, Atm, , SST | SVM | SVR | |
[109] | Radar images | , Wave Power | EA + Fuzzy | FRULER (GFS for regression) |
[110] | , , , , , Average T, d, Atm, , SST | , Wave Power | EA, Statistical | GGA-ELM + Bayesian optimization |
[113] | SVM, ANN | EMD-SVR, SVR, ANN (AR) | ||
[114] | Regression | EMD-AR | ||
[118] | , , , Huricane speed, , , SST, Moisture | SVM, Numerical, ANN, EA | SOS, PSO, ICA, ANN, SVR, SWAN, and SWAN-SOS | |
[122] | , | SVM | Prony Method based on ESPRIT, SVR | |
[123] | , , d, and , , Currents | Statistical + Numerical | SWAN + RR and EG aggregation | |
[116] | H, Wave frequency and phase, d | Regression, ANN | Gaussian Process, ANN, AR | |
[117] | Wave excitation force | , Wave Excitation | Regression | AR |
[111] | , d, , , | Statistical | Bayesian Network | |
[119] | , , d | SVM, ANN, Numerical, RF | LSTM, SVM, RF, LSTM + SWAN | |
[115] | Wave elevation | Regression | AR strategies (DMSSp, ARLLS, ARLRPI, DMSLLS) | |
[120] | Average H and T, , , | , , Wave Power | EA, ANN | MFO + DNN |
[121] | , d, , | RF + Numerical | SWAN + RF | |
[124] | Typhon central pressure, Wind velocity and cyclonic radius, | SVM, Fuzzy | SVM, FIM | |
[125] | , , d, , , Maximum , , , Typhon central location, Pressure and wind velocity, Cyclonic radius | SVM | SVR |
4. Conclusions
Author Contributions
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Acknowledgments
Conflicts of Interest
Abbreviations
AI | Artificial Intelligence |
AF | Activation Function |
ANFIS | Adaptive Network-based Fuzzy Inference Systems |
ANN | Artificial Neural Networks |
AR | Auto-regressive |
CNN | Convolutional Neural Networks |
CWR | Capture Width Ratio |
DNN | Deep Neural Networks |
EA | Evolutionary Algorithms |
ELM | Extreme Learning Machine |
EMD | Empirical Mode Decomposition |
FL | Fuzzy Logic |
GA | Genetic Algorithm |
GGA | Grouping Genetic Algorithm |
GMDH | Group Method of Data Handling |
GP | Gaussian Process |
GRU | Gated Recurrent Unit |
LSTM | Long Short-term Memory |
MAE | Mean Absolute Error |
MAPE | Mean Absolute Percentage Error |
MASE | Mean Absolute Scaled Error |
MLP | Multilayer Perceptron |
MSE | Mean Square Error |
MTEANN | Multi-task Evolutionary Artificial Neural Networks |
NWPS | Nearshore Wave Prediction System |
NWT | Neuro Wavelet Technique |
PCA | Principal Components Analysis |
PSO | Particle Swarm Optimization |
PTO | Power Take-Off |
RES | Renewable Energy Sources |
ReLU | Rectified Linear Unit |
RF | Random Forests |
RMSE | Root Mean Square Error |
RMSSE | Root Mean Square Scaled Error |
RNN | Recurrent Neural Network |
SI | Swarm Intelligence |
SOS | Symbiotic Organisms Search |
SST | Sea Surface Temperature |
SVM | Support-Vector Machines |
SVR | Support-Vector Regression |
WEC | Wave Energy Converter |
Atm | Atmospheric Pressure (atm) |
Significant Wave Height (m) | |
H | Wave Height (m) |
Air Pressure (Pa) | |
Air Temperature (°C) | |
Peak Wave Period (s) | |
Zero Up-crossing Wave Period (s) | |
T | Wave Period (s) |
tanh | Hyperbolic Tangent Function (-) |
d | Water Depth (m) |
Wave Direction (°) | |
Wind Direction (°) | |
Wind Gust (m/s) | |
Wind Speed (m/s) |
References
- Kost, C.; Schlegl, T.; Shammugam, S.; Julch, V.; Nguyen, H.-T. Study: Levelized Cost of Electricity—Renewable Energy Technologies—Fraunhofer ISE; Fraunhofer Institute for Solar Energy Systems ISE: Freiburg, Germany, 2018; Available online: https://www.ise.fraunhofer.de/en/publications/studies/cost-of-electricity.html (accessed on 10 December 2019).
- IRENA. Renewable Power Generation Costs in 2021; International Renewable Energy Agency: Abu Dhabi, United Arab Emirates, 2022; Available online: https://irena.org/publications/2022/Jul/Renewable-Power-Generation-Costs-in-2021 (accessed on 14 July 2022).
- OECD. Key World Energy Statistics 2021; Organisation for Economic Co-operation and Development: Paris, France, 2021; Available online: https://www.oecd-ilibrary.org/energy/key-world-energy-statistics-2021_2ef8cebc-en (accessed on 28 July 2022).
- FAO. The State of World Fisheries and Aquaculture 2022; Food and Agriculture Organization: Rome, Italy, 2022. [Google Scholar] [CrossRef]
- Abdelkareem, M.A.; El Haj Assad, M.; Sayed, E.T.; Soudan, B. Recent progress in the use of renewable energy sources to power water desalination plants. Desalination 2018, 435, 97–113. [Google Scholar] [CrossRef]
- Acciaro, M.; Vanelslander, T.; Sys, C.; Ferrari, C.; Roumboutsos, A.; Giuliano, G.; Lee Lam, J.S.; Kapros, S. Environmental sustainability in seaports: A framework for successful innovation. Marit. Policy Manag. 2014, 41, 480–500. [Google Scholar] [CrossRef]
- Kannan, N.; Vakeesan, D. Solar energy for future world: A review. Renew. Sustain. Energy Rev. 2016, 62, 1092–1105. [Google Scholar] [CrossRef]
- IEA. Offshore wind—Tracking Power; International Energy Agency: Paris, France, 2019; Available online: https://www.iea.org/reports/tracking-power-2019/offshore-wind (accessed on 19 December 2019).
- Rodrigues, C.; Nunes, D.; Clemente, D.; Mathias, N.; Correia, J.M.; Rosa-Santos, P.; Taveira-Pinto, F.; Morais, T.; Pereira, A.; Ventura, J. Emerging triboelectric nanogenerators for ocean wave energy harvesting: State of the art and future perspectives. Energy Environ. Sci. 2020, 13, 2657–2683. [Google Scholar] [CrossRef]
- Falnes, J. A review of wave-energy extraction. Mar. Struct. 2007, 20, 185–201. [Google Scholar] [CrossRef]
- Clemente, D.; Rosa-Santos, P.; Taveira-Pinto, F. On the potential synergies and applications of wave energy converters: A review. Renew. Sustain. Energy Rev. 2021, 135, 110162. [Google Scholar] [CrossRef]
- Falcão, A.F.D.O. Wave energy utilization: A review of the technologies. Renew. Sustain. Energy Rev. 2010, 14, 899–918. [Google Scholar] [CrossRef]
- Giannini, G.; Temiz, I.; Rosa-Santos, P.; Shahroozi, Z.; Ramos, V.; Göteman, M.; Engström, J.; Day, S.; Taveira-Pinto, F. Wave Energy Converter Power Take-Off System Scaling and Physical Modelling. J. Mar. Sci. Eng. 2020, 8, 632. [Google Scholar] [CrossRef]
- Folley, M.; Alves, M.; Ricci, P.; Fitzgerald, C.J.; Ringwood, J.V.; Kofoed, J.P. Numerical Modelling of Wave Energy Converters; Elsevier: Amsterdam, The Netherlands, 2016. [Google Scholar] [CrossRef] [Green Version]
- Tyralis, H.; Papacharalampous, G. Boosting algorithms in energy research: A systematic review. arXiv 2020, arXiv:2004.07049. [Google Scholar] [CrossRef]
- Cestaro, H.; Mathias, N.; Gonçalves, N.D.; Morais, T. TENG estimation model of voltage production for buoys using particle swarm optimization. Appl. Ocean Res. 2022, 125, 10. [Google Scholar] [CrossRef]
- Cuadra, L.; Salcedo-Sanz, S.; Borge, J.C.N.; Alexandre, E.; Rodríguez, G. Computational intelligence in wave energy: Comprehensive review and case study. Renew. Sustain. Energy Rev. 2016, 58, 1223–1246. [Google Scholar] [CrossRef]
- Teixeira-Duarte, F.; Clemente, D.; Giannini, G.; Rosa-Santos, P.; Taveira-Pinto, F. Review on layout optimization strategies of offshore parks for wave energy converters. Renew. Sustain. Energy Rev. 2022, 163, 112513. [Google Scholar] [CrossRef]
- Rodriguez-Delgado, C.; Bergillos, R.J. Wave energy assessment under climate change through artificial intelligence. Sci. Total Environ. 2021, 760, 144039. [Google Scholar] [CrossRef] [PubMed]
- Garcia-Teruel, A.; Forehand, D. A review of geometry optimisation of wave energy converters. Renew. Sustain. Energy Rev. 2021, 139, 110593. [Google Scholar] [CrossRef]
- Gómez-Orellana, A.M.; Guijo-Rubio, D.; Gutiérrez, P.A.; Hervás-Martínez, C. Simultaneous short-term significant wave height and energy flux prediction using zonal multi-task evolutionary artificial neural networks. Renew. Energy 2022, 184, 975–989. [Google Scholar] [CrossRef]
- Mares-Nasarre, P.; Molines, J.; Gómez-Martín, M.E.; Medina, J.R. Explicit Neural Network-derived formula for overtopping flow on mound breakwaters in depth-limited breaking wave conditions. Coast. Eng. 2020, 164, 103810. [Google Scholar] [CrossRef]
- Schmitt, P.; Gillan, C.; Finnegan, C. On the Use of Artificial Intelligence to Define Tank Transfer Functions. Mar. Eng. 2021; preprint. [Google Scholar] [CrossRef]
- Guo, X.; Zhang, X.; Tian, X.; Li, X.; Lu, W. Predicting heave and surge motions of a semi-submersible with neural networks. Appl. Ocean Res. 2021, 112, 102708. [Google Scholar] [CrossRef]
- Guo, X.; Zhang, X.; Tian, X.; Lu, W.; Li, X. Probabilistic prediction of the heave motions of a semi-submersible by a deep learning Model. Ocean Eng. 2022, 247, 110578. [Google Scholar] [CrossRef]
- Sirigu, S.A.; Foglietta, L.; Giorgi, G.; Bonfanti, M.; Cervelli, G.; Bracco, G.; Mattiazzo, G. Techno-Economic Optimisation for a Wave Energy Converter via Genetic Algorithm. J. Mar. Sci. Eng. 2020, 8, 482. [Google Scholar] [CrossRef]
- Pozzi, N.; Bracco, G.; Passione, B.; Sirigu, S.A.; Mattiazzo, G. PeWEC: Experimental validation of wave to PTO numerical model. Ocean Eng. 2018, 167, 114–129. [Google Scholar] [CrossRef]
- Offshore Energy. EMEC and H2GO Power Test AI Green Hydrogen Technology; Offshore Energy: Schiedam, The Netherlands, 2021; Available online: https://www.offshore-energy.biz/emec-and-h2go-power-test-ai-green-hydrogen-technology/ (accessed on 11 February 2021).
- Shen, S.-L.; Zhang, N.; Zhou, A.; Yin, Z.-Y. Enhancement of neural networks with an alternative activation function tanhLU. Expert Syst. Appl. 2022, 199, 117181. [Google Scholar] [CrossRef]
- Casas, I. Neural Networks. In International Encyclopedia of Human Geography; Kitchin, R., Thrift, N., Eds.; Elsevier: Oxford, UK, 2009; pp. 419–422. [Google Scholar] [CrossRef]
- Abiodun, O.I.; Jantan, A.; Omolara, A.E.; Dada, K.V.; Mohamed, N.A.; Arshad, H. State-of-the-art in artificial neural network applications: A survey. Heliyon 2018, 4, e00938. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Xu, Y.; Zhang, H. Convergence of deep convolutional neural networks. Neural Netw. 2022, 153, 553–563. [Google Scholar] [CrossRef]
- Aslan, S.; Zennaro, F.; Furlan, E.; Critto, A. Recurrent neural networks for water quality assessment in complex coastal lagoon environments: A case study on the Venice Lagoon. Environ. Model. Softw. 2022, 154, 105403. [Google Scholar] [CrossRef]
- Hochreiter, S.; Schmidhuber, J. Long Short-Term Memory. Neural Comput. 1997, 9, 1735–1780. [Google Scholar] [CrossRef]
- Cho, K.; van Merriënboer, B.; Gulcehre, C.; Bahdanau, D.; Bougares, F.; Schwenk, H.; Bengio, Y. Learning Phrase Representations using RNN Encoder-Decoder for Statistical Machine Translation. In Proceedings of the 2014 Conference on Empirical Methods in Natural Language Processing (EMNLP), Doha, Qatar, 25–29 October 2014; pp. 1724–1734. [Google Scholar] [CrossRef]
- Ho, T.K. Random decision forests. In Proceedings of the 3rd International Conference on Document Analysis and Recognition, Montreal, QC, Canada, 14–16 August 1995; Volume 1, pp. 278–282. [Google Scholar] [CrossRef]
- Breiman, L. Random Forests. Mach. Learn. 2001, 45, 5–32. [Google Scholar] [CrossRef] [Green Version]
- Gao, W.; Xu, F.; Zhou, Z.-H. Towards convergence rate analysis of random forests for classification. Artif. Intell. 2022, 313, 9300–9311. [Google Scholar] [CrossRef]
- Pisner, D.A.; Schnyer, D.M. Chapter 6—Support vector machine. In Machine Learning; Mechelli, A., Vieira, S., Eds.; Academic Press: Oxford, UK, 2020; pp. 101–121. [Google Scholar] [CrossRef]
- Cervantes, J.; Garcia-Lamont, F.; Rodríguez-Mazahua, L.; Lopez, A. A comprehensive survey on support vector machine classification: Applications, challenges and trends. Neurocomputing 2020, 408, 189–215. [Google Scholar] [CrossRef]
- Garcia, S.; Derrac, J.; Triguero, I.; Carmona, C.J.; Herrera, F. Evolutionary-based selection of generalized instances for imbalanced classification. Know.-Based Syst. 2012, 25, 3–12. [Google Scholar] [CrossRef]
- Batuwita, R.; Palade, V. FSVM-CIL: Fuzzy Support Vector Machines for Class Imbalance Learning. IEEE Trans. Fuzzy Syst. 2010, 18, 558–571. [Google Scholar] [CrossRef]
- Altenberg, L. Evolutionary Computation. In Encyclopedia of Evolutionary Biology; Kliman, R.M., Ed.; Elsevier: Amsterdam, The Netherlands, 2016; pp. 40–47. [Google Scholar] [CrossRef]
- MathWorks. Genetic Algorithm and Direct Search Toolbox User’s Guide, Version 1; The MathWorks, Inc.: Natick, MA, USA, 2004; Available online: http://cda.psych.uiuc.edu/matlab_pdf/gads_tb.pdf (accessed on 2 October 2022).
- Woodward, R.I.; Kelleher, E.J.R. Towards “smart lasers”: Self-optimisation of an ultrafast pulse source using a genetic algorithm. Sci. Rep. 2016, 6, 37616. [Google Scholar] [CrossRef] [PubMed] [Green Version]
- Slowik, A.; Kwasnicka, H. Evolutionary algorithms and their applications to engineering problems. Neural Comput. Appl. 2020, 32, 12363–12379. [Google Scholar] [CrossRef] [Green Version]
- Giassi, M.; Göteman, M. Parameter optimization in wave energy design by a genetic algorithm. In Proceedings of the 32nd International Workshop on Water Waves and Floating Bodies, Dalian, China, 23–26 April 2017; p. 4. Available online: http://urn.kb.se/resolve?urn=urn:nbn:se:uu:diva-329391 (accessed on 5 February 2020).
- Garcia-Teruel, A.; DuPont, B.; Forehand, D.I. Hull geometry optimisation of wave energy converters: On the choice of the optimisation algorithm and the geometry definition. Appl. Energy 2020, 280, 115952. [Google Scholar] [CrossRef]
- Neshat, M.; Alexander, B.; Sergiienko, N.Y.; Wagner, M. A hybrid evolutionary algorithm framework for optimising power take off and placements of wave energy converters. In Proceedings of the Genetic and Evolutionary Computation Conference, New York, NY, USA, 15–19 July 2019; pp. 1293–1301. [Google Scholar] [CrossRef] [Green Version]
- Sharp, C.; DuPont, B. Wave energy converter array optimization: A genetic algorithm approach and minimum separation distance study. Ocean Eng. 2018, 163, 148–156. [Google Scholar] [CrossRef]
- Reynolds, C.W. Flocks, herds and schools: A distributed behavioral model. SIGGRAPH Comput. Graph. 1987, 21, 25–34. [Google Scholar] [CrossRef] [Green Version]
- Kennedy, J.; Eberhart, R. Particle swarm optimization. In Proceedings of the ICNN’95—International Conference on Neural Networks, Perth, Australia, 27 November–1 December 1995; pp. 1942–1948. [Google Scholar] [CrossRef]
- Shi, Y.H.; Eberhart, R. A modified particle swarm optimizer. In Proceedings of the 1998 IEEE International Conference on Evolutionary Computation Proceedings, IEEE World Congress on Computational Intelligence (Cat. No.98TH8360), Anchorage, AK, USA, 4–9 May 1998; pp. 69–73. [Google Scholar] [CrossRef]
- Poli, R.; Kennedy, J.; Blackwell, T. Particle swarm optimization. Swarm Intell. 2007, 1, 33–57. [Google Scholar] [CrossRef]
- Gomes Pereira de Lacerda, M.; de Araujo Pessoa, L.F.; Buarque de Lima Neto, F.; Ludermir, T.B.; Kuchen, H. A systematic literature review on general parameter control for evolutionary and swarm-based algorithms. Swarm Evol. Comput. 2021, 60, 100777. [Google Scholar] [CrossRef]
- Zadeh, L.A. Fuzzy sets. Inf. Control 1965, 8, 338–353. [Google Scholar] [CrossRef] [Green Version]
- Kambalimath, S.; Deka, P.C. A basic review of fuzzy logic applications in hydrology and water resources. Appl. Water Sci. 2020, 10, 191. [Google Scholar] [CrossRef]
- Bai, Y.; Wang, D. Fundamentals of Fuzzy Logic Control—Fuzzy Sets, Fuzzy Rules and Defuzzifications. In Advanced Fuzzy Logic Technologies in Industrial Applications; Bai, Y., Zhuang, H., Wang, D., Eds.; Springer: London, UK, 2006; pp. 17–36. [Google Scholar] [CrossRef]
- Burgaç, A.; Yavuz, H. Fuzzy Logic based hybrid type control implementation of a heaving wave energy converter. Energy 2019, 170, 1202–1214. [Google Scholar] [CrossRef]
- Avila, D.; Marichal, G.N.; Padrón, I.; Quiza, R.; Hernández, Á. Forecasting of wave energy in Canary Islands based on Artificial Intelligence. Appl. Ocean Res. 2020, 101, 102189. [Google Scholar] [CrossRef]
- Wang, C.-N.; Van Thanh, N.; Su, C.-C. The Study of a Multicriteria Decision Making Model for Wave Power Plant Location Selection in Vietnam. Processes 2019, 7, 650. [Google Scholar] [CrossRef] [Green Version]
- Alkan, N.; Kahraman, C. Fuzzy Metaheuristics: A State-of-the-Art Review. In Proceedings of the INFUS 2020 Conference, Istanbul, Turkey, 21–23 July 2020; pp. 1447–1455. [Google Scholar] [CrossRef]
- Pecher, A.; Kofoed, J.P. (Eds.) Handbook of Ocean Wave Energy; Springer International Publishing: Cham, Switzertland, 2017. [Google Scholar] [CrossRef] [Green Version]
- Abhigna, P.; Jerritta, S.; Srinivasan, R.; Rajendran, V. Analysis of feed forward and recurrent neural networks in predicting the significant wave height at the Moored Buoys in Bay of Bengal. In Proceedings of the 2017 IEEE International Conference on Communication and Signal Processing, ICCSP 2017, Chennai, India, 6–8 April 2017; pp. 1856–1860. [Google Scholar] [CrossRef]
- Berbić, J.; Ocvirk, E.; Carević, D.; Lončar, G. Application of neural networks and support vector machine for significant wave height prediction. Oceanologia 2017, 59, 331–349. [Google Scholar] [CrossRef]
- Mahmoodi, K.; Ghassemi, H.; Nowruzi, H. Data mining models to predict ocean wave energy flux in the absence of wave records. Sci. J. Marit. Univ. Szczec. 2017, 49, 119–129. [Google Scholar] [CrossRef]
- Mahmoodi, K.; Nepomuceno, E.; Razminia, A. Wave excitation force forecasting using neural networks. Energy 2022, 247, 123322. [Google Scholar] [CrossRef]
- Guijo-Rubio, D.; Gómez-Orellana, A.M.; Gutiérrez, P.A.; Hervás-Martínez, C. Short- and long-term energy flux prediction using Multi-Task Evolutionary Artificial Neural Networks. Ocean Eng. 2020, 216, 108089. [Google Scholar] [CrossRef]
- Sadeghifar, T.; Nouri Motlagh, M.; Torabi Azad, M.; Mohammad Mahdizadeh, M. Coastal Wave Height Prediction using Recurrent Neural Networks (RNNs) in the South Caspian Sea. Mar. Geod. 2017, 40, 454–465. [Google Scholar] [CrossRef]
- Kumar, N.K.; Savitha, R.; Al Mamun, A. Ocean wave height prediction using ensemble of Extreme Learning Machine. Neurocomputing 2018, 277, 12–20. [Google Scholar] [CrossRef]
- Kumar, N.K.; Savitha, R.; Al Mamun, A. Regional ocean wave height prediction using sequential learning neural networks. Ocean Eng. 2017, 129, 605–612. [Google Scholar] [CrossRef]
- Wang, J.; Aouf, L.; Badulin, S. Retrieval of wave period from altimetry: Deep learning accounting for random wave field dynamics. Remote Sens. Environ. 2021, 265, 112629. [Google Scholar] [CrossRef]
- Choi, H.; Park, M.; Son, G.; Jeong, J.; Park, J.; Mo, K.; Kang, P. Real-time significant wave height estimation from raw ocean images based on 2D and 3D deep neural networks. Ocean Eng. 2020, 201, 107129. [Google Scholar] [CrossRef]
- Pirhooshyaran, M.; Snyder, L.V. Multivariate, Multistep Forecasting, Reconstruction and Feature Selection of Ocean Waves via Recurrent and Sequence-to-Sequence Networks. arXiv 2019, arXiv:1906.00195. [Google Scholar] [CrossRef]
- Pirhooshyaran, M.; Snyder, L.V. Forecasting, hindcasting and feature selection of ocean waves via recurrent and sequence-to-sequence networks. Ocean Eng. 2020, 207, 107424. [Google Scholar] [CrossRef]
- Vieira, F.; Cavalcante, G.; Campos, E.; Taveira-Pinto, F. A methodology for data gap filling in wave records using Artificial Neural Networks. Appl. Ocean Res. 2020, 98, 102109. [Google Scholar] [CrossRef]
- James, S.C.; Zhang, Y.; O’Donncha, F. A machine learning framework to forecast wave conditions. Coast. Eng. 2018, 137, 1–10. [Google Scholar] [CrossRef] [Green Version]
- ASánchez, A.S.; Rodrigues, D.A.; Fontes, R.M.; Martins, M.F.; Kalid, R.D.A.; Torres, E.A. Wave resource characterization through in-situ measurement followed by artificial neural networks’ modeling. Renew. Energy 2018, 115, 1055–1066. [Google Scholar] [CrossRef]
- Penalba, M.; Aizpurua, J.I.; Martinez-Perurena, A.; Iglesias, G. A data-driven long-term metocean data forecasting approach for the design of marine renewable energy systems. Renew. Sustain. Energy Rev. 2022, 167, 112751. [Google Scholar] [CrossRef]
- Nikoo, M.R.; Kerachian, R. Wave height prediction using artificial immune recognition systems (AIRS) and some other data mining techniques. Iran. J. Sci. Technol. Trans. Civ. Eng. 2017, 41, 329–344. [Google Scholar] [CrossRef]
- Callaghan, D.P.; Baldock, T.E.; Shabani, B.; Mumby, P.J. Communicating physics-based wave model predictions of coral reefs using Bayesian belief networks. Environ. Model. Softw. 2018, 108, 123–132. [Google Scholar] [CrossRef] [Green Version]
- Oh, J.; Suh, K.-D. Real-time forecasting of wave heights using EOF—Wavelet—Neural network hybrid model. Ocean Eng. 2018, 150, 48–59. [Google Scholar] [CrossRef]
- Ali, M.; Prasad, R. Significant wave height forecasting via an extreme learning machine model integrated with improved complete ensemble empirical mode decomposition. Renew. Sustain. Energy Rev. 2019, 104, 281–295. [Google Scholar] [CrossRef]
- Ali, M.; Prasad, R.; Xiang, Y.; Deo, R.C. Near real-time significant wave height forecasting with hybridized multiple linear regression algorithms. Renew. Sustain. Energy Rev. 2020, 132, 110003. [Google Scholar] [CrossRef]
- Ali, M.; Prasad, R.; Xiang, Y.; Sankaran, A.; Deo, R.C.; Xiao, F.; Zhu, S. Advanced extreme learning machines vs. deep learning models for peak wave energy period forecasting: A case study in Queensland, Australia. Renew. Energy 2021, 177, 1031–1044. [Google Scholar] [CrossRef]
- Ali, A.; Fathalla, A.; Salah, A.; Bekhit, M.; Eldesouky, E. Marine Data Prediction: An Evaluation of Machine Learning, Deep Learning, and Statistical Predictive Models. Comput. Intell. Neurosci. 2021, 2021, 8551167. [Google Scholar] [CrossRef] [PubMed]
- Zhang, X.; Dai, H. Significant Wave Height Prediction with the CRBM-DBN Model. J. Atmos. Ocean. Technol. 2019, 36, 333–351. [Google Scholar] [CrossRef]
- Kagemoto, H. Forecasting a water-surface wave train with artificial intelligence—A case study. Ocean Eng. 2020, 207, 107380. [Google Scholar] [CrossRef]
- Ni, C.; Ma, X. An integrated long-short term memory algorithm for predicting polar westerlies wave height. Ocean Eng. 2020, 215, 107715. [Google Scholar] [CrossRef]
- Shamshirband, S.; Mosavi, A.; Rabczuk, T.; Nabipour, N.; Chau, K.-W. Prediction of significant wave height; comparison between nested grid numerical model, and machine learning models of artificial neural networks, extreme learning and support vector machines. Eng. Appl. Comput. Fluid Mech. 2020, 14, 805–817. [Google Scholar] [CrossRef]
- Kim, S.; Tom, T.H.; Takeda, M.; Mase, H. A framework for transformation to nearshore wave from global wave data using machine learning techniques: Validation at the Port of Hitachinaka, Japan. Ocean Eng. 2021, 221, 108516. [Google Scholar] [CrossRef]
- Wei, Z. Forecasting wind waves in the US Atlantic Coast using an artificial neural network model: Towards an AI-based storm forecast system. Ocean Eng. 2021, 237, 109646. [Google Scholar] [CrossRef]
- Yang, S.; Deng, Z.; Li, X.; Zheng, C.; Xi, L.; Zhuang, J.; Zhang, Z.; Zhang, Z. A novel hybrid model based on STL decomposition and one-dimensional convolutional neural networks with positional encoding for significant wave height forecast. Renew. Energy 2021, 173, 531–543. [Google Scholar] [CrossRef]
- Tiron, R.; Mallon, F.; Dias, F.; Reynaud, E.G. The challenging life of wave energy devices at sea: A few points to consider. Renew. Sustain. Energy Rev. 2015, 43, 1263–1272. [Google Scholar] [CrossRef]
- Dixit, P.; Londhe, S. Prediction of extreme wave heights using neuro wavelet technique. Appl. Ocean Res. 2016, 58, 241–252. [Google Scholar] [CrossRef]
- Londhe, S.N.; Shah, S.; Dixit, P.R.; Nair, T.M.B.; Sirisha, P.; Jain, R. A Coupled Numerical and Artificial Neural Network Model for Improving Location Specific Wave Forecast. Appl. Ocean Res. 2016, 59, 483–491. [Google Scholar] [CrossRef]
- Durán-Rosal, A.M.; Fernández, J.C.; Gutiérrez, P.A.; Hervás-Martínez, C. Detection and prediction of segments containing extreme significant wave heights. Ocean Eng. 2017, 142, 268–279. [Google Scholar] [CrossRef]
- Rosal, A.M.D.; Fernandez, J.C.; Gutiérrez, P.A.; Hervas-Martinez, C. Hybridization of neural network models for the prediction of Extreme Significant Wave Height segments. In Proceedings of the 2016 IEEE Symposium Series on Computational Intelligence, SSCI 2016, Athens, Greece, 6–9 December 2016. [Google Scholar] [CrossRef]
- Mafi, S.; Amirinia, G. Forecasting hurricane wave height in Gulf of Mexico using soft computing methods. Ocean Eng. 2017, 146, 352–362. [Google Scholar] [CrossRef]
- Tsai, C.-C.; Wei, C.-C.; Hou, T.-H.; Hsu, T.-W. Artificial Neural Network for Forecasting Wave Heights along a Ship’s Route during Hurricanes. J. Waterw. Port Coast. Ocean Eng. 2018, 144, 04017042. [Google Scholar] [CrossRef]
- Wei, C.-C. Nearshore Wave Predictions Using Data Mining Techniques during Typhoons: A Case Study near Taiwan’s Northeastern Coast. Energies 2017, 11, 11. [Google Scholar] [CrossRef] [Green Version]
- Wei, C.-C.; Cheng, J.-Y. Nearshore two-step typhoon wind-wave prediction using deep recurrent neural networks. J. Hydroinform. 2020, 22, 346–367. [Google Scholar] [CrossRef]
- Wei, C.-C.; Chang, H.-C. Forecasting of Typhoon-Induced Wind-Wave by Using Convolutional Deep Learning on Fused Data of Remote Sensing and Ground Measurements. Sensors 2021, 21, 5234. [Google Scholar] [CrossRef] [PubMed]
- Meng, F.; Song, T.; Xu, D.; Xie, P.; Li, Y. Forecasting tropical cyclones wave height using bidirectional gated recurrent unit. Ocean Eng. 2021, 234, 108795. [Google Scholar] [CrossRef]
- Stefanakos, C. Fuzzy time series forecasting of nonstationary wind and wave data. Ocean Eng. 2016, 121, 1–12. [Google Scholar] [CrossRef] [Green Version]
- Cornejo-Bueno, L.; Aybar-Ruiz, A.; Jimenez-Fernandez, S.; Alexandre, E.; Nieto-Borge, J.C.; Salcedo-Sanz, S. A grouping genetic algorithm—Extreme learning machine approach for optimal wave energy prediction. In Proceedings of the 2016 IEEE Congress on Evolutionary Computation (CEC), Vancouver, BC, Canada, 24–29 July 2016; pp. 3817–3823. [Google Scholar] [CrossRef]
- Cornejo-Bueno, L.; Nieto-Borge, J.; García-Díaz, P.; Rodríguez, G.; Salcedo-Sanz, S. Significant wave height and energy flux prediction for marine energy applications: A grouping genetic algorithm—Extreme Learning Machine approach. Renew. Energy 2016, 97, 380–389. [Google Scholar] [CrossRef]
- Cornejo-Bueno, L.; Borge, J.N.; Alexandre, E.; Hessner, K.; Salcedo-Sanz, S. Accurate estimation of significant wave height with Support Vector Regression algorithms and marine radar images. Coast. Eng. 2016, 114, 233–243. [Google Scholar] [CrossRef]
- Cornejo-Bueno, L.; Rodríguez-Mier, P.; Mucientes, M.; Nieto-Borge, J.; Salcedo-Sanz, S. Significant wave height and energy flux estimation with a Genetic Fuzzy System for regression. Ocean Eng. 2018, 160, 33–44. [Google Scholar] [CrossRef]
- Cornejo-Bueno, L.; Garrido-Merchán, E.; Hernández-Lobato, D.; Salcedo-Sanz, S. Bayesian optimization of a hybrid system for robust ocean wave features prediction. Neurocomputing 2018, 275, 818–828. [Google Scholar] [CrossRef]
- Emmanouil, S.; Aguilar, S.G.; Nane, G.F.; Schouten, J.-J. Statistical models for improving significant wave height predictions in offshore operations. Ocean Eng. 2020, 206, 107249. [Google Scholar] [CrossRef]
- Ge, M.; Kerrigan, E.C. Short-term ocean wave forecasting using an autoregressive moving average model. In Proceedings of the 2016 UKACC International Conference on Control, UKACC Control 2016, Belfast, UK, 31 August–2 September 2016. [Google Scholar] [CrossRef] [Green Version]
- Duan, W.Y.; Han, Y.; Huang, L.M.; Zhao, B.B.; Wang, M.H. A hybrid EMD-SVR model for the short-term prediction of significant wave height. Ocean Eng. 2016, 124, 54–73. [Google Scholar] [CrossRef]
- Duan, W.Y.; Huang, L.M.; Han, Y.; Huang, D.T. A hybrid EMD-AR model for nonlinear and non-stationary wave forecasting. J. Zhejiang Univ. Sci. A 2016, 17, 115–129. [Google Scholar] [CrossRef] [Green Version]
- Pena-Sanchez, Y.; Merigaud, A.; Ringwood, J.V. Short-Term Forecasting of Sea Surface Elevation for Wave Energy Applications: The Autoregressive Model Revisited. IEEE J. Ocean. Eng. 2020, 45, 462–471. [Google Scholar] [CrossRef] [Green Version]
- Shi, S.; Patton, R.J.; Liu, Y. Short-term Wave Forecasting using Gaussian Process for Optimal Control of Wave Energy Converters. IFAC-PapersOnLine 2018, 51, 44–49. [Google Scholar] [CrossRef]
- Khan, M.R.H.; Karayaka, H.B.; Yan, Y.; Tay, P.; Yu, Y.-H. Wave Excitation Force Prediction Methodology Based on Autoregressive Filters for Real Time Control. In Proceedings of the 2019 IEEE Green Technologies Conference (GreenTech), Lafayette, LA, USA, 3–6 April 2019. [Google Scholar] [CrossRef]
- Akbarifard, S.; Radmanesh, F. Predicting sea wave height using Symbiotic Organisms Search (SOS) algorithm. Ocean Eng. 2018, 167, 348–356. [Google Scholar] [CrossRef]
- Fan, S.; Xiao, N.; Dong, S. A novel model to predict significant wave height based on long short-term memory network. Ocean Eng. 2020, 205, 107298. [Google Scholar] [CrossRef]
- Bento, P.M.R.; Pombo, J.A.N.; Mendes, R.P.G.; Calado, M.R.A.; Mariano, S.J.P.S. Ocean wave energy forecasting using optimised deep learning neural networks. Ocean Eng. 2021, 219, 108372. [Google Scholar] [CrossRef]
- Chen, J.; Pillai, A.C.; Johanning, L.; Ashton, I. Using machine learning to derive spatial wave data: A case study for a marine energy site. Environ. Model. Softw. 2021, 142, 105066. [Google Scholar] [CrossRef]
- Ma, Y.; Sclavounos, P.D.; Cross-Whiter, J.; Arora, D. Wave forecast and its application to the optimal control of offshore floating wind turbine for load mitigation. Renew. Energy 2018, 128, 163–176. [Google Scholar] [CrossRef]
- O’Donncha, F.; Zhang, Y.; Chen, B.; James, S.C. An integrated framework that combines machine learning and numerical models to improve wave-condition forecasts. J. Mar. Syst. 2018, 186, 29–36. [Google Scholar] [CrossRef] [Green Version]
- Chen, S.T. Probabilistic forecasting of coastal wave height during typhoon warning period using machine learning methods. J. Hydroinform. 2019, 21, 343–358. [Google Scholar] [CrossRef]
- Chen, S.-T.; Wang, Y.-W. Improving Coastal Ocean Wave Height Forecasting during Typhoons by using Local Meteorological and Neighboring Wave Data in Support Vector Regression Models. J. Mar. Sci. Eng. 2020, 8, 149. [Google Scholar] [CrossRef] [Green Version]
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2023 by the authors. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Clemente, D.; Teixeira-Duarte, F.; Rosa-Santos, P.; Taveira-Pinto, F. Advancements on Optimization Algorithms Applied to Wave Energy Assessment: An Overview on Wave Climate and Energy Resource. Energies 2023, 16, 4660. https://doi.org/10.3390/en16124660
Clemente D, Teixeira-Duarte F, Rosa-Santos P, Taveira-Pinto F. Advancements on Optimization Algorithms Applied to Wave Energy Assessment: An Overview on Wave Climate and Energy Resource. Energies. 2023; 16(12):4660. https://doi.org/10.3390/en16124660
Chicago/Turabian StyleClemente, Daniel, Felipe Teixeira-Duarte, Paulo Rosa-Santos, and Francisco Taveira-Pinto. 2023. "Advancements on Optimization Algorithms Applied to Wave Energy Assessment: An Overview on Wave Climate and Energy Resource" Energies 16, no. 12: 4660. https://doi.org/10.3390/en16124660
APA StyleClemente, D., Teixeira-Duarte, F., Rosa-Santos, P., & Taveira-Pinto, F. (2023). Advancements on Optimization Algorithms Applied to Wave Energy Assessment: An Overview on Wave Climate and Energy Resource. Energies, 16(12), 4660. https://doi.org/10.3390/en16124660