Application of deep neural network learning in composites design
Application of deep neural network learning in composites design
Yinli Wang, Constantinos Soutis, Daisuke Ando, Yuji Sutou & Fumio Narita
To cite this article: Yinli Wang, Constantinos Soutis, Daisuke Ando, Yuji Sutou & Fumio Narita
(2022) Application of deep neural network learning in composites design, European Journal of
Materials, 2:1, 117-170, DOI: 10.1080/26889277.2022.2053302
1. Introduction
Materials engineering has progressed in every field of activity, including
metallurgy, inorganic materials, and polymer science and engineering.
Recently, new alloys as lightweight innovative structural materials (Ogawa,
Ando, Sutou, & Koike, 2016) and phase change materials as low energy
non-volatile memories (Hatayama et al., 2018; Mori, Hatayama, Shuang,
Ando, & Sutou, 2020) have been developed, and much progress has been
made in technology for the design and evaluation toward functional
composite materials (Li et al., 2020; Wang, Yeo, Su, Wang, & Abdalla,
2020; Wang, Yeo, et al., 2020) and technology to detect the cracking or
damage of composite materials systems (Léonard, Stein, Soutis, & Withers,
2017; Takeda & Narita, 2017). Until recently, the development and char-
acterization of materials have mostly relied on the knowledge and expe-
rience of researchers rather than computing power.
Originally, computers were used by the United States (U.S.) military,
as their mathematical equations that needed to be solved were becoming
more complex, and would thus have required a costly labour force to
solve. Since this, computers have pervaded many aspects of daily life
over the years, with microprocessors having been embedded in many
household appliances and the use of personal computers becoming more
commonplace. It can now be said that the lives of humankind are inex-
tricably linked to computers. As computing speed and storage capacity
improved, scientists began to use computers more extensively in their
investigations. However, the use of computers in research is not limited
to the solving of linear mathematical calculations, as with many methods
having also been proposed to deal with nonlinear problems. To this aim,
artificial intelligence (AI) is a useful computational tool that can be used
to solve such nonlinear tasks as it mimics human brain activity to answer
questions and solve challenging problems.
Traditionally, to optimize performance, materials research has involved
a great deal of time-consuming and labour-intensive experimentation.
Experimental research is often aided by analytical and numerical mod-
elling to gain a better understanding of the measured data and the factors
affecting behaviour. In line with the advances made in technology and
computing power, more accurate methods and equipment have been
developed to facilitate research investigations. In particular, more accurate
information related to materials nano/microstructures can be obtained
using measurement and observation techniques, such as optical and
scanning electron microscopy (SEM), differential scanning calorimetry,
Fourier-transform infrared spectroscopy, and X-ray computed tomography
(CT). For this reason, the scale of research data is huge and not confined
European Journal of Materials 119
2. Deep learning
2.1 Development of deep learning
Deep learning has emerged from research on AI and ML, Figure 3
(Kelleher, 2019). There has been fascination as to when programmable
computers could become as intelligent as a human brain, process infor-
mation, and deal with complex problems (Goodfellow, Bengio, &
Courville, 2016). As the human brain is capable of dealing with vast
amounts of data and solving problems based on long-term knowledge,
for this reason a computer needs to capture valid knowledge from an
enormous amount of informal information. To simulate human deci-
sion-making and reasoning processes, AI aims to program intelligence
into machines by promoting them to learn from experiences and adapt
to changes in their environment (Muthukrishnan et al., 2020). In the
early days of AI, some problems in relatively simple environments were
rapidly solved using a list of formal, mathematical rules because the
computer did not require much knowledge about the entire world. For
example, the Deep Blue chess-playing system was the first example of
a computer system that outsmarted a human, defeating a reigning world
champion in a chess match under standard tournament time controls
(Saletan, 2007). However, chess is a relatively simple environment, con-
taining only 64 locations and 32 pieces that can move in specific ways.
Figure 3. The relationship between AI, ML, and deep learning (Kelleher, 2019).
122 Y. WANG ET AL.
are used to present inputs to the network and are excluded when the
depth of the deep-learning model is taken into consideration. The infor-
mation-processing neurons in the network are represented by circles in
the diagram. Each of these neurons takes a set of numeric values as
input and maps them to a single output value. The arrows in Figure 5
indicate how information flows through the network from the output of
one neuron to the input of another neuron. Each connection in a net-
work connects two neurons and each connection is directed, which means
that information flows only in one direction. Each connection in a
network carries a weight that influences how a neuron processes the
data it receives. Searching for the best set of weights is the essence of
training an artificial neural network.
Deep-learning algorithms can be classified as either supervised or
unsupervised types of ML algorithms, and they can be used in both.
In supervised learning, each example in the dataset is labelled with
the expected output (or target) value. The most common type of
supervised ML is when the algorithm uses these target values in the
dataset to aid the learning process. However, the target feature values
are sometimes difficult and expensive to collect. As there is no target
value in the database in unsupervised learning, the algorithm cannot
compare the fitness of a candidate function to the target values of the
dataset. As a result, most data clustering is completed using unsuper-
vised ML. Other variants of the learning paradigm are possible. For
instance, in semisupervized learning, some examples include a super-
vision target but others do not. In multi-instance learning, an entire
collection of examples is labelled as containing or not containing an
example of a class, but the individual members of the collection are
not labelled.
European Journal of Materials 125
n
z x w
i 1
i i
n
output estimated activation _ function (z x w )
i 1
i i
Based on this error value, the weights for the model are then adjusted
for the next calculation to find the optimal set of weights.
between data (Lecun, Bottou, Bengio, & Haffner, 1998). That is why
their primary use is in computer vision and applications such as image
classification, video recognition, medical image analysis, and self-driv-
ing cars.
Traditionally, in an aforementioned neural network of FFNN, the
outputs of previous layers are used as inputs of the next layers. Recurrent
neural networks (RNNs) are FFNNs with interesting loops, where neurons
are fed information not just from the previous layer but also from them-
selves in each step, allowing information to persist (Elman, 1990). In
this way, the neurons can recall past data and use it to make predictions.
Furthermore, the more computation that is conducted in RNNs, the
higher the volume of information gathered, and in addition, the model
size does not increase in line with the input size. Hence, these networks
are perfect for time-related data and are used in various fields, such as
in image captioning, time-series analysis, natural-language processing,
handwriting recognition, and machine translation. To improve perfor-
mance and avoid the vanishing gradient problem of RNNs, which causes
information to be lost rapidly over time, a more complex structure,
involving long short term memory (LSTM) units and gated recurrent
units (GRUs), must be devised to remember more data. LSTM units have
been used extensively in natural-language processing in tasks such as
language translation, speech generation, and text-to-speech synthesis.
A generative adversarial network (GAN) is a type of network with
two main components: a generator that generates fake data and a dis-
criminator that learns from that data. During the training period, the
generator becomes increasingly better at generating images, as its ultimate
goal is to fool the discriminator. As its goal is not to be fooled, the
discriminator then gradually improves its ability to distinguish between
fake and real images. As a result, the fake data of the generator becomes
incredibly realistic and this data is used to complement expensive real
data labelled by experts. In contrast, GANs are challenging to train
because they require not only the training of two networks but also the
balance of their dynamics. Because there is inherent divergence, the GAN
will not converge if prediction or generation becomes too good compared
to the other (Goodfellow et al., 2014).
A Hopfield network (HN) is a network where every neuron is con-
nected to every other neuron, which is a completely entangled plate of
spaghetti as even all the nodes function in relation to all the others.
Before training, each node is input, then hidden during training, and
then output (Hopfield, 1982). Boltzmann machines (BMs) are similar to
HNs, except that some neurons are labelled as input neurons while others
are left unlabelled (Hinton & Sejnowski, 1986). Restricted Boltzmann
128 Y. WANG ET AL.
Figure 7. Schematic illustration of the ANN architecture (Altarazi et al., 2018). DOP
(Dioctyl Phthalate) and CPW (Chlorinated Paraffin Plasticizer) are plasticizers used in
the formation of PVC composites.
132 Y. WANG ET AL.
weight were studied for specified production goals using FFNN and
adaptive neural fuzzy inference system (ANFIS) methods. These models
can be used to predict the molecular weight (output) of the biopolymer
from enzymatic polymerization after the ANN has been trained with
operating temperature and polymerization time (input) datasets.
Comparison of the FFNN and ANFIS results proved that the ANFIS
model is better at prediction, achieving 99.99% accuracy of validation.
This is because the ANFIS model combines the advantages of the fuzzy
logic system and neural network learning so it can adapt and establish
a good relationship between the input variables and the molecular weight
of the PCL. Other similar research studies have been conducted, using
various ANN models to solve this type of nonlinear relationship problem
(Ashhab, Breitsprecher, & Wartzack, 2014; Muñoz-Escalona & Maropoulos,
2010; Velten, Reinicke, & Friedrich, 2000).
Li et al. (2019) proposed a model (as shown in Figure 8) to predict
the effective modulus of a shale sample, which is a complex heteroge-
neous composite consisting of multiple mineral constituents. The model
was trained using SEM images, which were then used to generate a
large number of stochastic samples using a stochastic reconstruction
method. The finite element method was used to calculate the labels of
the dataset, which are the moduli of the samples. In this study, a CNN
was trained on an ordinary desktop computer equipped with an i7-8700
CPU using 10,000 generated stochastic mesoscale shale samples. The
training was iterated for 100 cycles and took around 43 minutes to finish
the training process, with this method having relatively high efficiency
compared to other deep-learning models or ML methods. Eventually,
the average prediction error was as low as 0.97%, which suggests that
the trained CNN model exhibits promising performance in predicting
the effective moduli of real shale samples. However, since all the labels
of the data are simulated, many factors have not been considered thor-
oughly, therefore meaning that the accuracy of this model still needs
to be confirmed.
Practically, SEM is mostly used as an auxiliary tool due to its insen-
sitivity to small differences in the degree of object characteristics eval-
uation as a result of limited observation areas. Carbon fibre (CF)
reinforced cement-based composites (CFRCs) are attractive for use in
future civil engineering applications because of their excellent mechanical
(Graham, Huang, Shu, & Burdette, 2013), electrical (Wang, Li, Li, Guo,
& Jiao, 2008), and thermal properties (Teomete, 2015). In research by
Tong, Gao, Wang, Wei, and Dou (2019), a deep-learning method was
proposed to characterize the CF morphology distribution in the CFRC
and predict the properties of the material. Ordinary Portland cement,
short-cut CFs, and mixing water were used to make the CFRC samples
in this study. Firstly, a modified CNN, of which fully connected layers
were replaced with deconvolutional layers (reverse process of convolution),
was used to segment X-ray images and characterize the CF morphology
distributions, as shown in Figure 9(a). Red, yellow, and green were used
to represent CF bundles, CF clustered areas, and uniformly dispersed
CF areas. Following that, based on the segmentation results, 3 D recon-
struction [Figure 9(b)] was applied to the samples. 3 D reconstruction
results provided visual and analyzable models, wherein the volumes and
changes of each component were presented, which were utilized to predict
resistivity and mechanical properties. However, using empirical equations
based on the CF morphology distribution to predict CFRC properties is
still difficult because even the same CF distribution in different slides
of the samples make a different contribution toward the CFRC properties,
which is for humans to define. The cascade deep-learning method pro-
posed in this work, a combined radial basis function (RBF) network and
fully convolution network, effectively coped with this problem and quan-
tificationally measured the contributions of the different CF morphology
distributions in terms of the effects that they had on the properties of
the CFRC, as a result of the ability for output feedback control of non-
linear systems using an RBF network (Seshagiri & Khalil, 2000).
In addition to SEM images and numerical values, other forms of data
can be utilized to train deep-learning models, such as spectra. A
deep-learning framework consisting of GAN and DNN was used by Tong
134 Y. WANG ET AL.
Figure 10. Outline of the prediction method (Ma et al., 2021). The raw forces data
were the milling force signals in the three directions of Fx, Fy, and Fz.
136 Y. WANG ET AL.
Figure 11. a) Final predicted and b) actual conductive heat transfer topologies (Lin
et al., 2019).
Figure 14. Crack-containing images (a, c, and e) and crack length distributions (b,
d, and f ) obtained from the loess/water composite material as a function of time
(or drying time or water lost): (a) and (b) immediately after sample preparation
(Stage I), (c) and (d) the intermediate stage (Stage IV), and (e) and (f ) the final stage
(Stage VI) (Hwang et al., 2019).
Figure 15. Process of labeling. a) One frame with the strongest defect information
is selected in the thermal sequence, confirmed by peers and a preparation map; b)
the data calibration tool -labelme is used to calibrate the defects of the frame image.
This process is confirmed by multiple peers; and c) a binary image is generated (Luo
et al., 2019).
are used to create composite materials and structures. Due to the high
degree of design freedom, however, realizing this process and achieving
the optimal materials structure is difficult. Obtaining optimal nonlinear
structures is now possible thanks to cloud computing, ML, and simu-
lation. In addition, designing the architectures of materials is epoch-mak-
ing, since the obtained materials can possess unprecedented properties
not observed for natural materials. These properties include, but are
not limited to, a very high stiffness-to-weight ratio and negative Poisson’s
ratio (Ruzzene & Scarpa, 2005). TO aims to find the best materials
distribution that maximizes system performance while adhering to design
constraints (Vangelatos, Gu, & Grigoropoulos, 2019).
Metamaterials are gaining traction as promising materials with unique
architectures that exhibit tailorable and unprecedented properties for a
diverse range of applications. Due to the limitations of manufacturing
techniques in the past, producing complex geometries was difficult. The
fabrication of these materials with complex architectures has become
possible in recent years thanks to advances in additive manufacturing
(Bendsøe & Kikuchi, 1988; Bikas, Stavropoulos, & Chryssolouris, 2016;
Gardan, 2016), and while more advanced fabrication techniques provide
new opportunities for making such metamaterials, the optimization prob-
lem is still challenging (Alhammadi et al., 2020). Kollmann, Abueidda,
Koric, Guleryuz, and Sobh (2020) developed a deep-learning model which
can noniteratively optimize metamaterials by either maximizing the bulk
Figure 18. Comparisons between optimized designs and truth values for the case
of minimizing the Poisson’s ratio under specific conditions (Kollmann et al., 2020).
The objective function and the volume of the optimized representative unit cells
obtained from the CNN model are compared with those of the ground-truth.
European Journal of Materials 151
Figure 19. Demonstration of the different channels (Abueidda et al., 2020). (1) ux
with a dimension of 33 × 33, (2) uy with a dimension of 33 × 33, (3) Px with a
dimension of 33 × 33, (4) Py with a dimension of 33 × 33, and (5) Vf with a
dimension of 32 × 32. ux and uy matrices have zero components everywhere except
at the nodes at the left-hand side, where fixed boundary conditions are imposed,
with a value of 1 assigned. The Px and Py matrices have zero values everywhere
except at the node that has the load P applied. The output of each data is composed
of one channel, where the values of the different pixels (elements) are the densities
obtained from the optimization framework as the rightmost black V shape shown.
152 Y. WANG ET AL.
(Buhl, Pedersen, & Sigmund, 2000; Maute, Schwarz, & Ramm, 1998;
Osanov & Guest, 2016). In addition, to further evaluate the proposed
model, the case of a linear elastic material under stress constraint was
considered. Each point of input data can be viewed as five channels
(images), as shown in Figure 19, where Vf represents the volume fraction,
ux and uy are displacements of the x and y directions, respectively, and
Px and Py denote the vectors of load P, respectively. Finally, the optimal
design was validated in the ABAQUS environment by using the same
parameters to generate the mesh and assign the boundary conditions
and loads automatically. The supercomputer generated 18,000 data points,
where high-throughput computing was applied to generate as many as
10 data points simultaneously, with an average rate of data generation
of 0.31 min/data. The training process took 1.25 and 1.5 h for linear and
nonlinear cases, respectively. After this model was trained, it is available
for the corresponding optimized design once the material properties and
desired optimization parameters were specified. Ground-truth designs
were chosen at random and compared to their corresponding prediction
results for qualitative evaluation of this model. Based on the findings, it
was concluded that the developed models are stable and are in good
agreement with the outcomes of mathematically rigorous nonlinear TO
frameworks. However, around 90 min was required to solve a single
optimization task on a personal computer equipped with a CORE i5
processor.
design flexibility (Hao et al., 2018; Vescovini, Oliveri, Pizzi, Dozio, &
Weaver, 2020; Wang, Abdalla, Wang, & Su, 2019). Although curvilinearly
stiffened panels have been proven to exhibit superior structural efficiency,
the explosion of design variables compared to traditional stiffened struc-
tures makes the design of such structures a challenging task (Liu et al.,
2020; Wang, Yeo, et al., 2020). Hao et al. (2021) proposed a novel struc-
tural layout optimization framework based on deep learning-based mod-
els. The image-based structural layout, which is characterized by
curvilinear stiffener paths, is used as a design variable, as opposed to
traditional design patterns that use various values of the parameter as
constraint conditions. CNNs are used to extract layout features from
curvilinear stiffeners and construct a surrogate model between layout
features and structural performance for this purpose. Since the flexibility
of the layout is extremely high, it is difficult to design a layout from
scratch. The AE model is adopted here since it can effectively reduce
dimensionality and be used to extract features via a backpropagation
algorithm to equate the output of the neural network. Each RBF and
Kriging remodeling takes only a few seconds during the optimization
process, whereas each CNN retraining and corresponding sub-optimiza-
tion takes around 5 min. Considering the initial sampling process, the
duration required to perform a complete CNN-based optimization and
a traditional model-based optimization are 24.2 and 22.5 h, respectively.
The specific curvilinear stiffener layouts and corresponding buckling
modes are presented in Figure 21, which perform admirably in structural
layout design with a variable number of stiffeners, and cannot be
addressed using traditional models, as shown. Although the accepted
principle in the field of aerospace dictates that a stiffened panel with
maximum structural efficiency is characterized by the simultaneous occur-
rence of global and local buckling in the first order buckling mode, the
optimal layout identified in this study only involved global buckling.
Moreover, the numerical examples used to evaluate this model are rela-
tively simple, and failure analysis, manufacturability, and the manufac-
turing costs of the structure have not been considered. Therefore, the
viability of this model merits further research.
Effusion cooling and transpiration cooling are efficient cooling tech-
nologies for hot section components, such as missiles, space vehicles,
rockets, and gas turbines (Song, Choi, & Scotti, 2006; Zhu, Jiang, Sun,
& Xiong, 2013). Porous media are used as the core structures in these
technologies, providing numerous micro avenues for the coolant to eject
and form a uniform coolant film on the external surface. In contrast,
traditional cooling structures are unable to adapt to nonuniform incoming
temperature loads due to model and design limitations. Yang, Dai, et al.
(2019) developed a conditional generative adversarial neural (cGAN)
European Journal of Materials 155
Figure 21. Comparison between the optimal layouts and corresponding buckling
modes (Hao et al., 2021).
Figure 22. Computational fluid dynamics data of the external surface temperature
distribution of the baseline geometry and the optimized geometries obtained for
each thermal load (Yang, Dai, et al., 2019).
Figure 23. Two materials phases model composed of flexoelectric (green block) and
elastic (blue block) constituents (Hamdia et al., 2019).
158 Y. WANG ET AL.
Disclosure statement
No potential conflict of interest was reported by the authors.
Notes on contributor
Y. Wang is a PhD student at the graduate school of Tohoku University, studying
materials science. Currently, she is conducting research on piezoelectric materi-
als. As she has knowledge on both computers and materials science, she is
particularly interested in interdisciplinary research.
European Journal of Materials 161
F. Narita received his PhD degree from Tohoku University, Japan, in 1998. He
is currently a Professor at Tohoku University. He is engaged in research to
design and develop piezoelectric and magnetostrictive composite materials in
energy harvesting and self-powered environmental monitoring.
ORCID
Yinli Wang http://orcid.org/0000-0003-2129-1225
Constantinos Soutis http://orcid.org/0000-0002-1402-9838
Daisuke Ando http://orcid.org/0000-0001-7112-894X
Yuji Sutou http://orcid.org/0000-0002-3067-2727
Fumio Narita http://orcid.org/0000-0002-0957-1948
References
Aarnes, J. E., Krogstad, S., & Lie, K.-A. (2006). A hierarchical multiscale meth-
od for two-phase flow based upon mixed finite elements and nonuniform
coarse grids. Multiscale Modeling & Simulation, 5(2), 337–363.
Abou-Ali, A. M., Al-Ketan, O., Rowshan, R., & Abu Al-Rub, R. (2019). Mechanical
response of 3D printed bending-dominated ligament-based triply periodic
cellular polymeric solids. Journal of Materials Engineering and Performance,
28(4), 2316–2326.
Abueidda, D. W., Koric, S., & Sobh, N. A. (2020). Topology optimization of 2D
structures with nonlinearities using deep learning. Computers & Structures,
237, 106283.
Aharoni, H., Xia, Y., Zhang, X., Kamien, R. D., & Yang, S. (2018). Universal
inverse design of surfaces with thin nematic elastomer sheets. Proceedings of
the National Academy of Sciences of the United States of America, 115(28),
7206–7211.
Alhammadi, A., Al-Ketan, O., Khan, K. A., Ali, M., Rowshan, R., & Abu Al-Rub,
R. K. (2020). Abu Al-Rub, Microstructural characterization and thermome-
chanical behaviour of additively manufactured AlSi10Mg sheet cellular mate-
rials. Materials Science and Engineering: A, 791, 139714.
162 Y. WANG ET AL.
Ali, M. A., Guan, Q., Umer, R., Cantwell, W. J., & Zhang, T. (2020). Deep
learning based semantic segmentation of μCT images for creating digital
materials twins of fibrous reinforcements. Composites Part A Applied Science
and Manufacturing., 139, 106131.
Alpaydin, E. (2014). Introduction to machine learning. MIT Press Cambridge,
MA.
Altarazi, S., Ammouri, M., & Hijazi, A. (2018). Artificial neural network mod-
elling to evaluate polyvinylchloride composites’ properties. Computational
Materials Science, 153, 1–9.
Amanullah, M. A., Habeeb, R. A. A., Nasaruddin, F. H., Gani, A., Ahmed, E.,
& Nainar Imran, A. S. M. (2020). Deep learning and big data technologies
for IoT security. Computer Communications, 151, 495–517.
Ansola, R., Veguería, E., Canales, J., & Alonso, C. (2012). Evolutionary optimi-
zation of compliant mechanisms subjected to non-uniform thermal effects.
Finite Elements in Analysis and Design, 57, 1–14.
Ashhab, M. S., Breitsprecher, T., & Wartzack, S. (2014). Neural network based
modelling and optimization of deep drawing-extrusion combined process.
Journal of Intelligent Manufacturing, 25(1), 77–84.
August, A., Ettrich, J., Rölle, M., Schmid, S., Berghoff, M., Selzer, M., & Nestler,
B. (2015). Prediction of heat conduction in open-cell foams via the diffuse
interface representation of the phase-field method. International Journal of
Heat and Mass Transfer, 84, 800–808.
Aykut, K. (2020). Topology optimization applications on engineering structures.
IntechOpen https://doi.org/10.5772/intechopen.90474.
Bang, H.-T., Park, S., & Jeon, H. (2020). Defect identification in composite
materials via thermography and deep learning techniques. Composite Structures,
246, 112405.
Bejan, A. (2015). Constructal law: optimization as design evolution. Journal of
Heat Transfer, 137(6), 061003.
Bendøse, M., & Sigmund, O. (2003). Topology optimization: theory methods and
applications., Springer
Bendsøe, M. P., & Kikuchi, N. (1988). Generating optimal topologies in struc-
tural design using a homogenization method. Computer Methods in Applied
Mechanics and Engineering, 71(2), 197–224.
Bikas, H., Stavropoulos, P., & Chryssolouris, G. (2016). Additive manufacturing
methods and modelling approaches: a critical review. The International Journal
of Advanced Manufacturing Technology, 83(1-4), 389–405.
Bourlard, H., & Kamp, Y. (1988). Auto-association by multilayer perceptrons
and singular value decomposition. Biological Cybernetics, 59(4-5), 291–294.
Buhl, T., Pedersen, C. B. W., & Sigmund, O. (2000). Stiffness design of geomet-
rically nonlinear structures using topology optimization. Structural and
Multidisciplinary Optimization, 19(2), 93–104.
Bujny, M., Aulig, N., Olhofer, M., & Duddeck, F. (2016). Evolutionary crashwor-
thiness topology optimization of thin-walled structures. Munich, Germany ASMO
UK.
Bulgarevich, D. S., Tsukamoto, S., Kasuya, T., Demura, M., & Watanabe, M.
(2018). Pattern recognition with machine learning on optical microscopy
images of typical metallurgical microstructures. Scientific Reports, 8(1), 2078.
Busse, G., Wu, D., & Karpen, W. (1992). Thermal wave imaging with phase
sensitive modulated thermography. Journal of Applied Physics, 71(8), 3962–3965.
European Journal of Materials 163
Hagita, K., Higuchi, T., & Jinnai, H. (2018). Super-resolution for asymmetric
resolution of FIB-SEM 3D imaging using AI with deep learning. Scientific
Reports, 8(1), 5877.
Hamdia, K. M., Ghasemi, H., Bazi, Y., AlHichri, H., Alajlan, N., & Rabczuk, T.
(2019). A novel deep learning based method for the computational material
design of flexoelectric nanostructures with topology optimization. Finite
Elements in Analysis and Design, 165, 21–30.
Hao, P., Liu, D., Zhang, K., Yuan, Y., Wang, B., Li, G., & Zhang, X. (2021).
Intelligent layout design of curvilinearly stiffened panels via deep learning-
based method. Materials & Design, 197, 109180.
Hao, P., Wang, B., & Li, G. (2012). Surrogate-based optimum design for stiffened
shells with adaptive sampling. AIAA Journal, 50(11), 2389–2407.
Hao, P., Wang, Y., Liu, C., Wang, B., Tian, K., Li, G., … Jiang, L. (2018).
Hierarchical nondeterministic optimization of curvilinearly stiffened panel
with multicutouts. AIAA Journal, 56(10), 4180–4194.
Hatayama, S., Sutou, Y., Shindo, S., Saito, Y., Song, Y. H., Ando, D., & Koike,
J. (2018). Inverse resistance change Cr2Ge2Te6-based PCRAM enabling ultralow-
energy amorphization. ACS Applied Materials & Interfaces, 10(3), 2725–2734.
Hinton, G. E., & Sejnowski, T. J. (1986). Learning and Relearning in Boltzmann
Machines. Parallel Distributed Processing: Explorations in the Microstructure of
Cognition, 1, 282–317.
Hofmeyer, H., Schevenels, M., & Boonstra, S. (2017). The generation of hierar-
chic structures via robust 3D topology optimisation. Advanced Engineering
Informatics, 33, 440–455.
Hopfield, J. J. (1982). Neural networks and physical systems with emergent
collective computational abilities. Proceedings of the National Academy of
Sciences of the United States of America, 79(8), 2554–2558.
Huang, X., Liu, Z., Zhang, X., Kang, J., Zhang, M., & Guo, Y. (2020). Surface
damage detection for steel wire ropes using deep learning and computer vision
method. Measurement, 161, 107843.
Hwang, H., Choi, S. M., Oh, J., Bae, S.-M., Lee, J.-H., Ahn, J.-P., … Hwang,
J.-H. (2020). Integrated application of semantic segmentation-assisted deep
learning to quantitative multi-phased microstructural analysis in composite
materials: case study of cathode composite materials of solid oxide fuel cells.
Journal of Power Sources, 471, 228458.
Hwang, H., Oh, J., Lee, K. H., Cha, J. H., Choi, E., Yoon, Y., & Hwang, J. H.
(2019). Synergistic approach to quantifying information on a crack-based
network in loess/water material composites using deep learning and network
science. Computational Materials Science, 166, 240–250.
Ikeda, Y. (1997). A new method of alloy design using a genetic algorithm and
molecular dynamics simulation and its application to nickel-based superalloys.
Materials Transactions, JIM, 38(9), 771–779.
Ivarsson, N., Wallin, M., & Tortorelli, D. (2018). Topology optimization of finite
strain viscoplastic systems under transient loads. International Journal for
Numerical Methods in Engineering, 114(13), 1351–1367.
Jiang, J., & Fan, J. A. (2019). Simulator-based training of generative neural net-
works for the inverse design of metasurfaces. Nanophotonics, 9(5), 1059–1069.
Kärger, L., Bernath, A., Fritz, F., Galkin, S., Magagnato, D., Oeckerath, A., …
Henning, F. (2015). Development and validation of a CAE chain for unidirec-
tional fibre reinforced composite components. Composite Structures, 132, 350–358.
European Journal of Materials 165
Kärger, L., Galkin, S., Zimmerling, C., Dörr, D., Linden, J., Oeckerath, A., &
Wolf, K. (2018). Forming optimisation embedded in a CAE chain to assess
and enhance the structural performance of composite components. Composite
Structures, 192, 143–152.
Kelleher, J. D. (2019). D Learning, MIT Press Cambridge, MA.
Kessler, S. S., Spearing, S. M., & Soutis, C. (2002). Damage detection in com-
posite materials using Lamb wave methods. Smart Materials and Structures,
11(2), 269–278.
Khalid, M., Ullah, M. A., Adeel, M., Usman Khan, M. U., Tahir, M. N., & Braga,
A. A. C. (2019). Synthesis, crystal structure analysis, spectral IR, UV–vis,
NMR assessments, electronic and nonlinear optical properties of potent quin-
oline based derivatives: interplay of experimental and dft study. Journal of
Saudi Chemical Society, 23(5), 546–560.
Khatir, S., Boutchicha, D., Le Thanh, C. L., Tran-Ngoc, H., Nguyen, T. N., &
Abdel-Wahab, M. (2020). Improved ANN technique combined with Jaya
algorithm for crack identification in plates using XIGA and experimental
analysis. Theoretical and Applied Fracture Mechanics, 107, 102554.
Kollmann, H. T., Abueidda, D. W., Koric, S., Guleryuz, E., & Sobh, N. A. (2020).
Deep learning for topology optimization of 2D metamaterials. Materials &
Design, 196, 109098.
Landis, E. N. (1999). Micro-macro fracture relationships and acoustic emissions
in concrete. Construction and Building Materials, 13(1-2), 65–72.
Le, M., Pham, C.-T., & Lee, J. (2021). Deep neural network for simulation of
magnetic flux leakage testing. Measurement, 170, 108726.
Lecun, Y., Bottou, L., Bengio, Y., & Haffner, P. (1998). Gradient-based learning
applied to document recognition. Proceedings of the IEEE, 86(11), 2278–2324.
Léonard, F., Stein, J., Soutis, C., & Withers, P. J. (2017). The quantification of
impact damage distribution in composite laminates by analysis of X-ray com-
puted tomograms. Composites Science and Technology, 152, 139–148.
Li, G., Chen, K., Wang, Y., Wang, Z., Chen, X., Cui, S., … Mi, L. (2020). Cream
roll-inspired advanced MnS/C composite for sodium-ion batteries: encapsulating
MnS cream into hollow N,S-co-doped carbon rolls. Nanoscale, 12(15), 8493–8501.
Li, L., Zhang, G., & Khandelwal, K. (2017). Design of energy dissipating elas-
toplastic structures under cyclic loads using topology optimization. Structural
and Multidisciplinary Optimization, 56(2), 391–412.
Li, X., Liu, Z., Cui, S., Luo, C., Li, C., & Zhuang, Z. (2019). Predicting the
effective mechanical property of heterogeneous materials by image based
modelling and deep learning. Computer Methods in Applied Mechanics and
Engineering, 347, 735–753.
Lin, Q., Liu, Z., & Hong, J. (2019). Method for directly and instantaneously
prediction conductive heat transfer topologies by using supervised deep learn-
ing. International Communications in Heat and Mass Transfer, 109, 104368.
Liu, D., Hao, P., Zhang, K., Tian, K., Wang, B., Li, G., & Xu, W. (2020). On the
integrated design of curvilinearly grid-stiffened panel with non-uniform dis-
tribution and variable stiffener profile. Materials & Design, 190, 108556.
Liu, D., Tan, Y., Khoram, E., & Yu, Z. (2018). Training deep neural networks for
the inverse design of nanophotonic structures. ACS Photonics, 5(4), 1365–1369.
Liu, X., Gasco, F., Goodsell, J., & Yu, W. (2019). Initial failure strength predic-
tion of woven composites using a new yarn failure criterion constructed by
deep learning. Composite Structures, 230, 111505.
166 Y. WANG ET AL.
Liu, Z., Zhu, D., Rodrigues, S. P., Lee, K. T., & Cai, W. (2018). Generative
model for the inverse design of metasurfaces. Nano Letters, 18(10), 6570–6576.
Loffe, S., & Szegedy, C. (2015). Batch normalization: accelerating deep network
training by reducing internal covariate shift [Paper presentation]. 32nd
International Conference on Machine Learning, 37, 448–456.
Lu, C., Wang, Z. Y., Qin, W. L., & Ma, J. (2017). Fault diagnosis of rotary ma-
chinery components using a stacked denoising autoencoder-based health state
identification. Signal Processing, 130, 377–388.
Lu, S., Zhou, Q., Ouyang, Y., Guo, Y., Li, Q., & Wang, J. (2018). Accelerated
discovery of stable lead-free hybrid organic-inorganic perovskites via machine
learning. Nature Communications, 9(1), 3405.
Lucchi, E. (2018). Applications of the infrared thermography in the energy
audit of buildings: a review. Renewable and Sustainable Energy Reviews, 82,
3077–3090.
Luo, Q., Gao, B., Woo, W. L., & Yang, Y. (2019). Temporal and spatial deep
learning network for infrared thermal defect detection. NDT & E International,
108, 102164.
Luscher, D. J., Mcdowell, D. L., & Bronkhorst, C. A. (2010). A second gradient
theoretical framework for hierarchical multiscale modelling of materials.
International Journal of Plasticity, 26(8), 1248–1275.
Ma, J., Luo, D., Liao, X., Zhang, Z., Huang, Y., & Lu, J. (2021). Tool wear
mechanism and prediction in milling TC18 titanium alloy using deep learn-
ing. Measurement, 173, 108554.
Marck, G., Nemer, M., Harion, J.-L., Russeil, S., & Bougeard, D. (2012). Topology
optimization using the SIMP method for multiobjective conductive problems.
Numerical Heat Transfer, Part B, 61(6), 439–470.
Maute, K., Schwarz, S., & Ramm, E. (1998). Adaptive topology optimization of
elastoplastic structures. Structural Optimization, 15(2), 81–91.
Mendizabal, A., Márquez-Neila, P., & Cotin, S. (2020). Cotin, Simulation of
hyperelastic materials in real-time using deep learning. Medical Image Analysis,
59, 101569.
Michaleris, P., Tortorelli, D. A., & Vidal, C. A. (1994). Tangent operators and
design sensitivity formulations for transient non-linear coupled problems with
applications to elastoplasticity. International Journal for Numerical Methods in
Engineering, 37(14), 2471–2499.
Modarres, M. H., Aversa, R., Cozzini, S., Ciancio, R., Leto, A., & Brandino,
G. P. (2017). Neural network for nanoscience scanning electron microscope
image recognition. Scientific Reports, 7(1), 13282.
Mori, S., Hatayama, S., Shuang, Y., Ando, D., & Sutou, Y. (2020). Reversible
displacive transformation in MnTe polymorphic semiconductor. Nature
Communications, 11(1), 85.
Moulinec, H., & Suquet, P. (1998). A numerical method for computing the
overall response of nonlinear composites with complex microstructure.
Computer Methods in Applied Mechanics and Engineering, 157(1–2), 69–94.
Muñoz-Escalona, P., & Maropoulos, P. G. (2010). Artificial neural networks for
surface roughness prediction when face milling al 7075-T7351. Journal of
Materials Engineering and Performance, 19(2), 185–193.
Muthukrishnan, N., Maleki, F., Ovens, K., Reinhold, C., Forghani, B., & Forghani,
R. (2020). Brief history of artificial intelligence. Neuroimaging Clinics of North
European Journal of Materials 167
Song, Y., Huang, Z., Shen, C., Shi, H., & Lange, D. A. (2020). Deep learning-based
automated image segmentation for concrete petrographic analysis. Cement and
Concrete Research, 135, 106118.
Soutis, C. (2005). Fibre reinforced composites in aircraft construction. Progress
in Aerospace Sciences, 41(2), 143–151.
Soutis, C. (2020). Aerospace engineering requirements in building with composites,
polymer composites in the aerospace industry (Edited by P. Irving & C. Soutis),
(2nd ed., pp. 3–22), Woodhead Publishing Series in Composites Science and
Engineering, Elsevier.
Srivastava, N., Hilton, G., Krizhevsky, A., Sutskever, I., & Salakhutdinov, R.
(2014). Dropout: a simple way to prevent neural networks from overfitting.
Journal of Machine Learning Research, 15, 1929–1958.
Takeda, T., & Narita, F. (2017). Fracture behaviour and crack sensing capability
of bonded carbon fibre composite joints with carbon nanotube-based polymer
adhesive layer under Mode I loading. Composites Science and Technology, 146,
26–33.
Teomete, E. (2015). Measurement of crack length sensitivity and strain gage
factor of carbon fibre reinforced cement matrix composites. Measurement, 74,
21–30.
Tong, Z., Gao, J., Wang, Z., Wei, Y., & Dou, H. (2019). A new method for CF
morphology distribution evaluation and CFRC property prediction using cas-
cade deep learning. Construction and Building Materials, 222, 829–838.
Tong, Z., Wang, Z., Wang, X., Ma, Y., Guo, H., & Liu, C. (2021). Characterization
of hydration and dry shrinkage behaviour of cement emulsified asphalt com-
posites using deep learning. Construction and Building Materials, 274, 121898.
Tran-Ngoc, H., Khatir, S., De Roeck, G. D., Bui-Tien, T., & Abdel Wahab, M.
(2019). An efficient artificial neural network for damage detection in bridges
and beam-like structures by improving training parameters using cuckoo search
algorithm. Engineering Structures, 199, 109637.
Vangelatos, Z., Gu, G. X., & Grigoropoulos, C. P. (2019). Architected metama-
terials with tailored 3d buckling mechanisms at the microscale. Extreme
Mechanics Letters, 33, 100580.
Velten, K., Reinicke, R., & Friedrich, K. (2000). Wear volume prediction with
artificial neural networks. Tribology International, 33(10), 731–736.
Vescovini, R., Oliveri, V., Pizzi, D., Dozio, L., & Weaver, P. M. (2020). A semi-an-
alytical approach for the analysis of variable-stiffness panels with curvilinear
stiffeners. International Journal of Solids and Structures, 188-189, 244–260.
Walker, H., Lane, D., & Stutzman, P. (2004). Petrographic methods of examining
hardened concrete, Virginia transportation research council in cooperation
with the U.S. Dept. of Transportation Federal Highway Administration,
Charlottesville, VA.
Wang, C., Li, K., Li, H., Guo, L., & Jiao, G. (2008). Influence of CVI treatment
of carbon fibers on the electromagnetic interference of CFRC composites.
Cement and Concrete Composites, 30(6), 478–485.
Wang, D., Abdalla, M., Wang, Z. P., & Su, Z. J. (2019). Streamline stiffener path
optimization (SSPO) for embedded stiffener layout design of non-uniform
curved grid-stiffened composite (NCGC) structures. Computer Methods in
Applied Mechanics and Engineering, 344, 1021–1050.
Wang, D., Yeo, S. Y., Su, Z., Wang, Z. P., & Abdalla, M. M. (2020). Data-driven
streamline stiffener path optimization (SSPO) for sparse stiffener layout design
European Journal of Materials 169
Zenzen, R., Khatir, S., Belaidi, I., Thanh, C. L., & Abdel Wahab, M. (2020). A
modified transmissibility indicator and artificial neural network for damage
identification and quantification in laminated composite structures. Composite
Structures, 248, 112497.
Zhang, J., Chen, Q., Shi, Z., Teng, J., & Zhou, L. (2016). Investigation on a
novel bolted joint scheme for foam inserted top-hat stiffened composite plates.
Materials & Design, 93, 448–457.
Zhang, Z., Liu, Q., & Wang, Y. (2018). Road extraction by deep residual u-net.
IEEE Geoscience and Remote Sensing Letters, 15(5), 749–753.
Zhao, X., Gosine, R., Davis, S., LeFeuvre, P., Sinclair, I., & Burden, E. (2000).
Automated Image Analysis for Applications in Reservoir Characterization, in:
KES. Fourth International Conference Knowledge-Based Intellettuale Engenharia
System Allied Technol. Proc, 620–623, Cat, No. 00TH8516), IEEE, n.d..
Zheng, M., Lei, Z., & Zhang, K. (2020). Intelligent detection of building cracks
based on deep learning. Image and Vision Computing, 103, 103987.
Zhou, S., & Li, Q. (2008). Computational design of microstructural composites
with tailored thermal conductivity. Numerical Heat Transfer Part A, 54(7),
686–708.
Zhu, J. H., Zhang, W. H., & Xia, L. (2016). Topology optimization in aircraft
and aerospace structures design. Archives of Computational Methods in
Engineering, 23(4), 595–622.
Zhu, J., & Gao, T. (2016). Topology optimization in engineering structure design.
ISTE Press Elsevier London
Zhu, Y., Jiang, P., Sun, J., & Xiong, Y. (2013). Injector head transpiration cool-
ing coupled with combustion in H2/O2 subscale thrust chamber. Journal of
Thermophysics and Heat Transfer, 27(1), 42–51.
Ziatdinov, M., Dyck, O., Maksov, A., Li, X., Sang, X., Xiao, K., … Kalinin, S.
V. (2017). Deep learning of atomically resolved scanning transmission electron
microscopy images: chemical identification and tracking local transformations.
ACS Nano, 11(12), 12742–12752.
Zimmerling, C., Dörr, D., Henning, F., & Kärger, L. (2019). A machine learning
assisted approach for textile formability assessment and design improvement
of composite components. Composites Part A Applied Science and Manufacturing.,
124, 105459.
Zunger, A. (2018). Inverse design in search of materials with target functional-
ities. Nature Reviews Chemistry, 2(4), 1–16.