Startseite Chinese open information extraction based on DBMCSS in the field of national information resources
Artikel Open Access

Chinese open information extraction based on DBMCSS in the field of national information resources

  • Jianhou Gan , Peng Huang , Juxiang Zhou und Bin Wen EMAIL logo
Veröffentlicht/Copyright: 1. September 2018

Abstract

Binary entity relationship tuples can be applied in many fields such as knowledge base construction, data mining, pattern extraction, and so on. The purpose of entity relationship mining is discovering and identifying the semantic relationship. As the relationship between entities are different from the general domain, using supervise learning methods to extract entity relationships in the field of ethnicity is difficult. After research, we find that some words can be used in the context of a sentence to describe the semantic relationship. In order to salve the existing difficulties of building tagged corpus and the predefined entities-relationships model, this paper proposes a method of density-based multi-clustering clustering of semantic similarity (DBMCSS) to mine the binary entity relationship tuples from the Chinese national information corpus, which can extract entity relationships without a training corpus.

1 Introduction

The research on information extraction (IE) is being developed into open information extraction, extracting open categories of entity relations and events from open domain text resources [1, 2]. Wu [3] uses Wikipedia infobox attribute values to construct training data, using the CRF method to choose relational words, then using the matching template to handle an unbounded set of semantic. This help the IE system get better results while also speeding more time. Shan [4] uses the shallow parsing theory to improve the IE system’s quantity of information, chooses POS (part of speech) tagging and nominal phrase (NP) chunks instead of full parse trees to be the features, and chooses a logistic regression classifier. This will bring some new errors, such as “He lent me a book”, the result is (He, lent, me), but as a matter of fact, it’s a ternary relation task. Cafarella [5] uses an open information extraction system to extract entities from the web [6]. Yates [7] proposes a system named TextRunner for extraction tasks. Del and Gemulla [8] think of extract open information as a clustering problem, Xavier [9] extracts open information based on semantics.

Relation extraction is an important task in text mining [10], it can reflect the relationship between the named entities and help to find implicit knowledge in the substantial data and text [11]. We find that it can use some words in the context of a sentence to describe the semantic relationship. To solve the known difficulties and problems in the setup of a tagged corpus and predefine the entities-relationships model, this paper proposes a method of density-based multi-clustering of semantic similarity (DBMCSS) to extract the binary entity relationship tuples.

In recent years, supervised learning of relation-specific examples has huge adoption in information extraction systems, but the training data is very hard to obtain, especially in the field of ethnicity [12], and it hasn’t built a training corpus and predefined the entities-relationship model. To solve this problem, we give an extract entity relation triples without a tagged corpus and pre-defined relation types. In the experiments, we have to perform better in precision of some relation type tasks than others.

2 The method

2.1 Named entity pair extraction

To extract Binary entity relationship tuples from texts. Firstly, we need to extract named entity pairs. Since the named entity pairs are between in a sentence and a group of sentences, we need to use the method of HMM to recognize the named entity [13]. Our task is to extract the named entity pair from a sentence. How to find the named entity pair from a sentence which includes many entities influences the precision. So we defined the entity set as follows:

Entity = (entity1, type1), (entity2, type2), (entity3, type3),…

We find that most of the entity pairs are neighboring by analyzing the distribution of entity pairs in a sentence. According to this principles, the entity pairs are selected. We defined the candidate entity pair set as follows:

Candidate Entity=<entity1, entity2>,<entity2, entity3><entity3, entity4>…

There is too much noise in the candidate entity pair set, so we used some rules to filter out the noise. The rules are used by us as follows:

  1. We observed that most of entity pair are not too far away, so we give a threshold to filter some candidate entity pair of noise;

  2. The entity pair are not the same if the entity pair exist relationship, so we can filter some noise;

  3. To statistic frequency of the relationship demonstrative between the entity pair type. We can filter some noise if the frequency is below a threshold value.

2.2 The contextual feature extraction of named entity pairs

We find some conditions by counting the entity pair distribution of the Chinese corpus. With the Chinese syntactic changeable, we need to simplify the condition, so we can mainly divide the condition into three types:

  1. The relationship demonstrative is between the entity pair, such as : “the ancient of Hmong firstly lived in the middle and lower reaches of Yellow River”, the relationship demonstrative “lived in” is between the entity of “the ancient of Hmong” and “the middle and lower reaches of Yellow River”.

  2. The relationship demonstrative is on the right of the entity pair, such as: “the swinging dance is the most influential large dance of Tujia ethnic minority”, the relationship demonstrative “the large dance” is on the right of the entity pair of “the swinging dance” and “Tujia ethnic minority”.

  3. The relationship demonstrative is on the left of the entity pair, such as: “As a leader, Mrs. Washi led the Zhuang ethnic minority people to resist the Japanese”, the relationship demonstrative “leader” is on the left of the entity pair of “Mrs. Washi” and “the Zhuang ethnic minority people”.

We chose the entity pair, the verb or noun between the entity pair, the verb or noun on the right of entity pair, the verb or noun on the left of entity pair, and the POS of all of the words as the feature for binary entity relationship tuples extraction.

2.3 Semantic similarity computation of feature vector

During the cluster analysis course, calculating the similarity of feature vector is important. We suppose that if entity pairs have the same relationship the feature vectors are more similar. For the N-dimensional feature vector to describe the binary entity relationship tuples we use the distance to measure the feature vector’s similarity. We choose the Manhattan distance to describe the two feature’s similarity. For the vector V1(v11, v12,…,v1n), V2(v21, v22,…,v2n), the Manhattan distance formula as follows:

D(Vt,Vj)=k=1m|vtkvjk|(1)

We choose the TongYiCi CiLin Extended Edition dictionary written by the HIT to calculate the similarity of two words, the TongYiCi CiLin Extended Edition record 70000 entry [14]. The TongYiCi CiLin Extended Edition uses a five-layer classification system to describe the hierarchical relation of entries. Fig. 1 is its hierarchical structure figure.

Figure 1 Monitoring Properties of Sensor NetworkThe hierarchical structure of TongYiCi CiLin Extended Edition.
Figure 1

Monitoring Properties of Sensor NetworkThe hierarchical structure of TongYiCi CiLin Extended Edition.

Such as: the word “Hmong” code is Di04B10#, “D” is the Level 1, “i” is level 2, “04” is level 3, “B” is level 4, “10” is level 5, and the “#” has other uses. Table 1 gives the word encoding rules.

Table 1

Description of sub-process monitoring indicators

Encode address12345678
ExampleDi04B10m/#/@
Typelargemediumlittleword-grouplittle-word-group
Level12345

The eighth encode has 3 labels, including the label “#”, “=” and “@”. The “#”represent the unequal, the “=” represents equation, and the “@” represents independent.

For the two words w1 and w2, the similarity evaluation formula is as follows:

Sim(w1,w2)=ln×cos(n×π180)(nk+1n)+C(2)

Because the density-based spatial clustering of application with noise (DBSCAN) method (see algorithm 1) has better performance to cluster the information from the noise, so we used this method to cluster the binary tuples about the entity relationship. We can use this clustering method to filter some noise and improve the accuracy of the entity relationship extraction. This method first defines two parameters: radius and density. If accord with these conditions, those binary entity relationship tuples will be clustered. We can find those sample points which are in keeping with these two conditions by constantly extending the search, clustering the information from the noise.

Algorithm 1: DBSCAN
Input: E, MinPts, S
Output: Cluster
1For o from 0 to length of S // iterate over the collection of S
2If o==core objects then // if o is core object
3R = find1(o)// find o’s semantic density directly point
4For r from 0 to length of R // iterate over the core object semantic //density directly point
5Find2(r) //find point r maximum semantic density data set

DBSCAN is a kind of clustering is the method-based on density. Density based methods considers clusters as dense region of objects that are different from lower dense regions in the data space. Density based regions are more appropriate and applicable in arbitrary shaped clusters but selection of attributes and selection of clusters with algorithms are more complex. It has the feature to merge two clusters that are sufficiently close to each other.

Density biased sampling, DBSCAN (Density Based Spatial Clustering of Applications with Noise), OPTICS (Ordering Points to Identify Clustering Structure), and DENCLUE (Density Clustering), and so forth are examples of this method[15, 16, 17, 18]. DBSCAN requires two important parameters as follows [15, 16].

  1. Eps is the radius that represents spatial attribute (latitude and longitude) that delimitates the neighborhood area of a point.

  2. Minpts is the minimum number of points that must exist in the Eps-neighborhood.

Some concepts and definitions of DBSCAN (Density-Based Spatial Clustering of Application with Noise) which are directly and indirectly related to DBSCAN (Density-Based Spatial Clustering of Application with Noise) are explained here [15]:

  1. Cluster: in a database with given data objects as D = {O1, O2, ⋯, On}, the procedure of partitioning database D into smaller parts which are similar in certain standards as C = {C1, C2, ⋯, Ci} is called clustering. Cjs are clusters, where CjD(j = 1, 2, 3, ⋯, i).

  2. Neighborhood: a distance function (e.g., Manhattan distance and Euclidean distance) for any two points p and q denotes dist(p, q).

  3. Eps-neighborhood:the Eps-neighborhood (threshold distance) of a point p is defined by {qD|dist(p, q) ⩽ Eps}.

  4. Core object: a point p is a core point if at least Minpts points are within distance of it, and those points are said to be directly reachable from p . In other words, a core object is a point that its neighborhood of a given radius (Eps) has to contain at least a minimum number (Minpts) of other points.

  5. Directly density reachable: an object p is directly density reachable from the object q if is with in Eps-neighborhood of q and q is a core object in given data objects as D = {O1, O2, ⋯, On}.

  6. Density reachable: a point q is reachable from q if there is a chain p1pn with p1 = p and pn = q, where each pi + 1 is directly reachable from pi with respect to Eps and Minpts, for 1 ⩽ in, piD.

  7. Density connected: an object p is density connected to object q with respect to Eps and Minpts if there is an object oD such that both p and q are density reachable from o with respect to Eps and Minpts.

  8. Density based clusters: a cluster c is nonempty subset of D satisfying the following “maximality” and “connectivity” requirements:

    1. p, q: if qC and p is directly reachable from q with respect to Eps and Minpts, then pC.

    2. p, qC: p is density connected to q with respect to Eps and Minpts.

  9. Border objects: an object p is a border object if it is not a core object but density reachable from another core object.

  10. Noise: all points are not reachable from any other point, that is, neither a core point nor density reachable. Noise = {pD|∀i : pnotCi}.

Some of the reasons why we have selected DBSCAN are its positive points as discussed in the following[16]:

  1. It is capable of discovering clusters with arbitrary shapes.

  2. There is no need to predict the number of clusters in advance and hence it is more realistic.

  3. There are greedy methods to replace R*-tree data type greedy queries.

  4. Selection and application of attributes is always open to improve time and space complexity.

  5. It is robust to outliers and merging is possible with other clusters if they are similar.

It can be found that density reachable is the transitive closure of directly density reachable, and this relationship is asymmetric, and density connected is a symmetric relationship. The purpose of DBSCAN is to find the largest set of density connected objects.

Eg: hypothesis radius Eps = 3, MinPts = 3, there is point {m, p, p1, p2, o} in the Eps-neighborhood of point p, there is point {m, p, q, m1, m2} in the Eps-neighborhood of point m, there is point {q, m} in the Eps-neighborhood of point q, there is point o, p, s in the Eps-neighborhood of point o, there is point {o, s, s1} in the Eps-neighborhood of point s, then there are the core object p, m, o, s(But q is not the core object because the number of points in the Eps-neighborhood of point q is equal to 2, less than MinPts = 3). Point m is directed density reachable from point p because m is the Eps-neighborhood of point p, and p is the core object. Point q is reachable from point p density, because point q can reach direct density from point m, and point m can reach direct density from point p. Point q is density reachable from point p because point q can directed density reachable from point m and point m can directed density reachable from point p. Point q is density connected to point s because point q is density reachable from point p and point s is density reachable from point p.

In summary, the method of density-based multi-clustering of semantic similarity (DBMCSS) that we are proposed includes the following steps: (1) Named entities in the text are recognized; (2) The entity pairs in a sentence are selected according to the adjacent principles.This is to find out the entity pairs that have the relationship; (3) Using some rules to filter out the noise entity pairs; (4) Choosing the entity pair, the verb or noun between the entity pair, the verb or noun on the right of entity pair, the verb or noun on the left of entity pair to establish the entity relationship tuples; (5) The feature vectors of the arbitrary entity pairs in the sentences are established.We chose the POS of the words in step (4) as the feature for binary entity relationship tuples extraction; (6) Calculating the similarity of the feature vector by Manhattan distance; (7) Using the DBSCAN clustering algorithm to cluster the feature vector, then the entity relationship tuples are extracted.

3 Experiment

The corpus of experiments collected from the online source of Miao, WA, Tujia, Zhuang, Mongolian, Tibetan and other ethnic data comes from the Baidu encyclopedia of national introduction. The corpus size is 7.9 million words. This paper chooses the entity pair, the N verbs and nouns on the left of the entity pair, the N verbs and nouns between the entity pair, the N verbs and nouns on the right of the entity pair to be the feature, and the part-of-speech of the words as the eigenvectors of the relation extraction. The features include not only the word, but it also contains the part-of-speech. The method to calculate the similarity of a part of speech is as follows: if two words have the same part-of-speech then the value of similarity is 1, and if they are different then the value of similarity is 0. For the various attributes of the feature vector, through experimental analysis, for each value is weighted, the weight is between two entities similar weight value is 1, part of speech similar to the weight value of 0.3, entity of in the context of gerund similar weight of 1.5.

Part of the results of the computation of the similarity of the corpus are showed in Table 2. Some entity relationship extract experiment results are showed in Table 3.

Table 2

Entity pair similarity

Entity pair 1Entity pair 2Semantic similarity
Peach/ns and Grass/nrZhijin County/ns and Hmong/nz1.840
Peach /ns and Grass/nrQiandongnan/ns and Goulang/nr3.088
Zhaotong/ns and antiphonal singings/nrGoulang/nr and Guangxi/ns0.500
Anshun/ns and Hmong/nzZhijin County/ns and Hmong/nz3.100
Yilang/nr and Hmong/nzZhang Xiumei/nr and Qiannan/ns2.271
Hmong/nz and Miao surname/nrZhaotong/ns and antiphonal singings/nr1.200

Table 3

The result of entity relation extraction

SentenceEntity1Entity2Entity2
Part of Hmong migrated to Southeast Asian countriesHmongSoutheast Asianmigrated to
The Hmong language belong to Sino-Tibetan ethnic languages HmongHmong languageSino-Tibetanbelong to
From Genghis Khan unified Mongolia into before and after the yuan dynasty establishedGenghis KhanMongoliaunified
Chiyou first defeat Emperor YanChiyouEmperor Yandefeat
Chiyou led by Hmong people fought bravelyChiyouHmongled
Ethnic Zhuang residential area is located in the South of the Five RidgesEthnic ZhuangSouth of the Five Ridgesresidential area

The experiments are a combination of two methods by using and not using the semantic clustering method to extract from the corpus, through during the experimental observations this paper’s set up field density is 5, the radius area is 2, then the experiments were conducted, and the results of the entity relationship extraction are showed in table 4 as follows:

Table 4

Accuracy comparison of relation extraction with two methods

Entity relationship typeAccuracy of no clusteringAccuracy of using clustering
organization—toponymy75.0%78.0%
toponymy—organization21.5%37.0%
organization—organization57.1%75.6%
organization—character67.0%72.2%
Ycharacter—organization60.0%76.0%
average correct rate56.1%67.7%

The results of the Experiment, using the DBSCAN method to clustering the candidate entity relationship, clearly show a filtering of the noise from the candidate entity relationship. Finally, by comparing the two methods, we find it improves the accuracy of entity relationship extraction if we use the DBSCAN cluster method to filter out the noise.

4 Discussion and conclusion

In this paper, we introduce an new extract entity relation triples method that is density-based of multi-clustering semantic similarity (DBMCSS). Due to the effect of word segmentation and named entity recognition there is a direct impact on the effect of relation extraction, the extraction of entity relationships will influence the improvement of the accuracy of word segmentation and named entity recognition. This paper used single layer clustering to filter the noise, so if we were to use a multi-cluster method the results may better than this. In the experiment, we found the computation speed was too slow, so in our future work, we considered using distributed computing to solve the computation speed problem. In the future, we will carry out the following research works: firstly, the method of entity relation extracting is improved to improve the accuracy and recall rate of mining. In addition, there is the application of the relation extracting results in knowledge services and intelligent retrieval.

Acknowledgement

The research is supported by a National Nature Science Fund Project with Nos.61562093, Nos.61661051, and Key Project of Applied Basic Research Program of Yunnan Province Nos. 2016FA024, and Youth Project of Applied Basic Research of Science and Technology Plan in Yunnan Province Nos. 2016FD022.

References

[1] Duc-Thuan V., Ebrahim B., Open Information Extraction, Encyclopedia with Semantic Computing & Robotic Intelligence, 2016, 1, 1, 1-4.Suche in Google Scholar

[2] Gotti F., Philippe L., From French Wikipedia to Erudit: A test case For Cross-domain open information extraction, Comp. Intel., Special Issue of Computational Intelligence based on the 29th Canadian Conference on Artificial Intelligence, 2017, 1-20.10.1111/coin.12120Suche in Google Scholar

[3] Wu F., Weld D.S., Open information extraction using Wikipedia, Proceedings of the Meeting of the Association for Computational Linguistics, 2010, 118-127.Suche in Google Scholar

[4] Shan S.R., Xie J.H., Identifying Relations for Open Information Extraction, Conference on Empirical Methods in Natural Language Processing, Assoc. Comp. Linguistics, 2011, 1535-1545.Suche in Google Scholar

[5] Banko M., Cafarella M.J., Soderland S. et al., Open information extraction from the web, Int. Joint Conference on Artificial Intelligence, 2007, 2670-2676.Suche in Google Scholar

[6] Zhila A., Gelbukh A., Open Information Extraction from real Internet texts in Spanish using constraints over part-of speech sequences: Problems of the method, their causes, and ways for improvement, Revista Signos, 2016, 49, 119-142.10.4067/S0718-09342016000100006Suche in Google Scholar

[7] Yates A., Cafarella M., Banko M. et al., Text Runner: open information extraction on the web, Proceedings of Human Language Technology Conference of the North American Chapter of the Association of Computational Linguistics, 2007, 25-26.10.3115/1614164.1614177Suche in Google Scholar

[8] Del C. L., Gemulla R., Claus IE: Clause-based open information extraction, 2013 International Conference on World Wide Web, 2013, 355-366.Suche in Google Scholar

[9] Xavier C.C., Lima V.D., Souza M., Open information extraction based on lexical semantics, J. Brazilian Comp. Soc., 2015, 21, 1, 1-14.10.1186/s13173-015-0023-2Suche in Google Scholar

[10] Gamallo P., An overview of open information extraction, 3rd Symposium on Languages, Appl. Technol. (SLATE’14), 2014, 13-16.Suche in Google Scholar

[11] Gotti F., Langlais P., Harnessing Open Information Extraction for Entity Classification in a French Corpus, Adv. Artificial Intel., 2016, 150-160.10.1007/978-3-319-34111-8_20Suche in Google Scholar

[12] Jain S., Tumkur K. R., Kuo T.T. et al., Erratum to: Weakly supervised learning of biomedical information extraction from curated data, BMC Bioinformatics, 2016, 17, 1, 84.10.1186/s12859-016-0925-9Suche in Google Scholar PubMed PubMed Central

[13] Morwal S., Jahan N., Chopra D., Named Entity Recognition using Hidden Markov Model (HMM), Int. J. Nat. Lang. Comp., 2012, 1(1), 15-23.10.5121/ijnlc.2012.1402Suche in Google Scholar

[14] Liang CH.X., Shao Y.Q., Zhao J., Construction of a Chinese Semantic Dictionary by Integrating Two Heterogeneous Dictionaries: TongYiCi Cilin and HowNet, 2013, Int. Joint Confer- ences on Web Intelligence, 2013, 203-207.10.1109/WI-IAT.2013.184Suche in Google Scholar

[15] Muetzelfeldt R., Duckham M., Dynamic Spatial Modeling in the Similie Visual Modeling Environment, chapter 17, 2005, John Wiley Sons, New York.Suche in Google Scholar

[16] Sharma A., Gupta R.K., Tiwari A., Improved Density Based Spatial Clustering of Applications of Noise Clustering Algorithm for Knowledge Discovery in Spatial Data, Mathematical Problems in Engineering, 2016, 1564516, 1-9.10.1155/2016/1564516Suche in Google Scholar

[17] Locke J.B., Peter A.M., Multiwavelet density estimation, Appl. Math. Comp., 2013, 219(11), 6002-6015.10.1016/j.amc.2012.11.099Suche in Google Scholar

[18] Culbertson J., Guralnik D.P., Stiller P.F., Functorial hierarchical clustering with overlaps, Discrete Applied Math., 2018, 236, 108-123.10.1016/j.dam.2017.10.015Suche in Google Scholar

Received: 2018-04-19
Accepted: 2018-06-12
Published Online: 2018-09-01

© 2018 Jianhou Gan et al., published by De Gruyter

This work is licensed under the Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 License.

Artikel in diesem Heft

  1. Regular Articles
  2. A modified Fermi-Walker derivative for inextensible flows of binormal spherical image
  3. Algebraic aspects of evolution partial differential equation arising in the study of constant elasticity of variance model from financial mathematics
  4. Three-dimensional atom localization via probe absorption in a cascade four-level atomic system
  5. Determination of the energy transitions and half-lives of Rubidium nuclei
  6. Three phase heat and mass transfer model for unsaturated soil freezing process: Part 1 - model development
  7. Three phase heat and mass transfer model for unsaturated soil freezing process: Part 2 - model validation
  8. Mathematical model for thermal and entropy analysis of thermal solar collectors by using Maxwell nanofluids with slip conditions, thermal radiation and variable thermal conductivity
  9. Constructing analytic solutions on the Tricomi equation
  10. Feynman diagrams and rooted maps
  11. New type of chaos synchronization in discrete-time systems: the F-M synchronization
  12. Unsteady flow of fractional Oldroyd-B fluids through rotating annulus
  13. A note on the uniqueness of 2D elastostatic problems formulated by different types of potential functions
  14. On the conservation laws and solutions of a (2+1) dimensional KdV-mKdV equation of mathematical physics
  15. Computational methods and traveling wave solutions for the fourth-order nonlinear Ablowitz-Kaup-Newell-Segur water wave dynamical equation via two methods and its applications
  16. Siewert solutions of transcendental equations, generalized Lambert functions and physical applications
  17. Numerical solution of mixed convection flow of an MHD Jeffery fluid over an exponentially stretching sheet in the presence of thermal radiation and chemical reaction
  18. A new three-dimensional chaotic flow with one stable equilibrium: dynamical properties and complexity analysis
  19. Dynamics of a dry-rebounding drop: observations, simulations, and modeling
  20. Modeling the initial mechanical response and yielding behavior of gelled crude oil
  21. Lie symmetry analysis and conservation laws for the time fractional simplified modified Kawahara equation
  22. Solitary wave solutions of two KdV-type equations
  23. Applying industrial tomography to control and optimization flow systems
  24. Reconstructing time series into a complex network to assess the evolution dynamics of the correlations among energy prices
  25. An optimal solution for software testing case generation based on particle swarm optimization
  26. Optimal system, nonlinear self-adjointness and conservation laws for generalized shallow water wave equation
  27. Alternative methods for solving nonlinear two-point boundary value problems
  28. Global model simulation of OH production in pulsed-DC atmospheric pressure helium-air plasma jets
  29. Experimental investigation on optical vortex tweezers for microbubble trapping
  30. Joint measurements of optical parameters by irradiance scintillation and angle-of-arrival fluctuations
  31. M-polynomials and topological indices of hex-derived networks
  32. Generalized convergence analysis of the fractional order systems
  33. Porous flow characteristics of solution-gas drive in tight oil reservoirs
  34. Complementary wave solutions for the long-short wave resonance model via the extended trial equation method and the generalized Kudryashov method
  35. A Note on Koide’s Doubly Special Parametrization of Quark Masses
  36. On right-angled spherical Artin monoid of type Dn
  37. Gas flow regimes judgement in nanoporous media by digital core analysis
  38. 4 + n-dimensional water and waves on four and eleven-dimensional manifolds
  39. Stabilization and Analytic Approximate Solutions of an Optimal Control Problem
  40. On the equations of electrodynamics in a flat or curved spacetime and a possible interaction energy
  41. New prediction method for transient productivity of fractured five-spot patterns in low permeability reservoirs at high water cut stages
  42. The collinear equilibrium points in the restricted three body problem with triaxial primaries
  43. Detection of the damage threshold of fused silica components and morphologies of repaired damage sites based on the beam deflection method
  44. On the bivariate spectral quasi-linearization method for solving the two-dimensional Bratu problem
  45. Ion acoustic quasi-soliton in an electron-positron-ion plasma with superthermal electrons and positrons
  46. Analysis of projectile motion in view of conformable derivative
  47. Computing multiple ABC index and multiple GA index of some grid graphs
  48. Terahertz pulse imaging: A novel denoising method by combing the ant colony algorithm with the compressive sensing
  49. Characteristics of microscopic pore-throat structure of tight oil reservoirs in Sichuan Basin measured by rate-controlled mercury injection
  50. An activity window model for social interaction structure on Twitter
  51. Transient thermal regime trough the constitutive matrix applied to asynchronous electrical machine using the cell method
  52. On the zagreb polynomials of benzenoid systems
  53. Integrability analysis of the partial differential equation describing the classical bond-pricing model of mathematical finance
  54. The Greek parameters of a continuous arithmetic Asian option pricing model via Laplace Adomian decomposition method
  55. Quantifying the global solar radiation received in Pietermaritzburg, KwaZulu-Natal to motivate the consumption of solar technologies
  56. Sturm-Liouville difference equations having Bessel and hydrogen atom potential type
  57. Study on the response characteristics of oil wells after deep profile control in low permeability fractured reservoirs
  58. Depiction and analysis of a modified theta shaped double negative metamaterial for satellite application
  59. An attempt to geometrize electromagnetism
  60. Structure of traveling wave solutions for some nonlinear models via modified mathematical method
  61. Thermo-convective instability in a rotating ferromagnetic fluid layer with temperature modulation
  62. Construction of new solitary wave solutions of generalized Zakharov-Kuznetsov-Benjamin-Bona-Mahony and simplified modified form of Camassa-Holm equations
  63. Effect of magnetic field and heat source on Upper-convected-maxwell fluid in a porous channel
  64. Physical cues of biomaterials guide stem cell fate of differentiation: The effect of elasticity of cell culture biomaterials
  65. Shooting method analysis in wire coating withdrawing from a bath of Oldroyd 8-constant fluid with temperature dependent viscosity
  66. Rank correlation between centrality metrics in complex networks: an empirical study
  67. Special Issue: The 18th International Symposium on Electromagnetic Fields in Mechatronics, Electrical and Electronic Engineering
  68. Modeling of electric and heat processes in spot resistance welding of cross-wire steel bars
  69. Dynamic characteristics of triaxial active control magnetic bearing with asymmetric structure
  70. Design optimization of an axial-field eddy-current magnetic coupling based on magneto-thermal analytical model
  71. Thermal constitutive matrix applied to asynchronous electrical machine using the cell method
  72. Temperature distribution around thin electroconductive layers created on composite textile substrates
  73. Model of the multipolar engine with decreased cogging torque by asymmetrical distribution of the magnets
  74. Analysis of spatial thermal field in a magnetic bearing
  75. Use of the mathematical model of the ignition system to analyze the spark discharge, including the destruction of spark plug electrodes
  76. Assessment of short/long term electric field strength measurements for a pilot district
  77. Simulation study and experimental results for detection and classification of the transient capacitor inrush current using discrete wavelet transform and artificial intelligence
  78. Magnetic transmission gear finite element simulation with iron pole hysteresis
  79. Pulsed excitation terahertz tomography – multiparametric approach
  80. Low and high frequency model of three phase transformer by frequency response analysis measurement
  81. Multivariable polynomial fitting of controlled single-phase nonlinear load of input current total harmonic distortion
  82. Optimal design of a for middle-low-speed maglev trains
  83. Eddy current modeling in linear and nonlinear multifilamentary composite materials
  84. The visual attention saliency map for movie retrospection
  85. AC/DC current ratio in a current superimposition variable flux reluctance machine
  86. Influence of material uncertainties on the RLC parameters of wound inductors modeled using the finite element method
  87. Cogging force reduction in linear tubular flux switching permanent-magnet machines
  88. Modeling hysteresis curves of La(FeCoSi)13 compound near the transition point with the GRUCAD model
  89. Electro-magneto-hydrodynamic lubrication
  90. 3-D Electromagnetic field analysis of wireless power transfer system using K computer
  91. Simplified simulation technique of rotating, induction heated, calender rolls for study of temperature field control
  92. Design, fabrication and testing of electroadhesive interdigital electrodes
  93. A method to reduce partial discharges in motor windings fed by PWM inverter
  94. Reluctance network lumped mechanical & thermal models for the modeling and predesign of concentrated flux synchronous machine
  95. Special Issue Applications of Nonlinear Dynamics
  96. Study on dynamic characteristics of silo-stock-foundation interaction system under seismic load
  97. Microblog topic evolution computing based on LDA algorithm
  98. Modeling the creep damage effect on the creep crack growth behavior of rotor steel
  99. Neighborhood condition for all fractional (g, f, n′, m)-critical deleted graphs
  100. Chinese open information extraction based on DBMCSS in the field of national information resources
  101. 10.1515/phys-2018-0079
  102. CPW-fed circularly-polarized antenna array with high front-to-back ratio and low-profile
  103. Intelligent Monitoring Network Construction based on the utilization of the Internet of things (IoT) in the Metallurgical Coking Process
  104. Temperature detection technology of power equipment based on Fiber Bragg Grating
  105. Research on a rotational speed control strategy of the mandrel in a rotary steering system
  106. Dynamic load balancing algorithm for large data flow in distributed complex networks
  107. Super-structured photonic crystal fiber Bragg grating biosensor image model based on sparse matrix
  108. Fractal-based techniques for physiological time series: An updated approach
  109. Analysis of the Imaging Characteristics of the KB and KBA X-ray Microscopes at Non-coaxial Grazing Incidence
  110. Application of modified culture Kalman filter in bearing fault diagnosis
  111. Exact solutions and conservation laws for the modified equal width-Burgers equation
  112. On topological properties of block shift and hierarchical hypercube networks
  113. Elastic properties and plane acoustic velocity of cubic Sr2CaMoO6 and Sr2CaWO6 from first-principles calculations
  114. A note on the transmission feasibility problem in networks
  115. Ontology learning algorithm using weak functions
  116. Diagnosis of the power frequency vacuum arc shape based on 2D-PIV
  117. Parametric simulation analysis and reliability of escalator truss
  118. A new algorithm for real economy benefit evaluation based on big data analysis
  119. Synergy analysis of agricultural economic cycle fluctuation based on ant colony algorithm
  120. Multi-level encryption algorithm for user-related information across social networks
  121. Multi-target tracking algorithm in intelligent transportation based on wireless sensor network
  122. Fast recognition method of moving video images based on BP neural networks
  123. Compressed sensing image restoration algorithm based on improved SURF operator
  124. Design of load optimal control algorithm for smart grid based on demand response in different scenarios
  125. Face recognition method based on GA-BP neural network algorithm
  126. Optimal path selection algorithm for mobile beacons in sensor network under non-dense distribution
  127. Localization and recognition algorithm for fuzzy anomaly data in big data networks
  128. Urban road traffic flow control under incidental congestion as a function of accident duration
  129. Optimization design of reconfiguration algorithm for high voltage power distribution network based on ant colony algorithm
  130. Feasibility simulation of aseismic structure design for long-span bridges
  131. Construction of renewable energy supply chain model based on LCA
  132. The tribological properties study of carbon fabric/ epoxy composites reinforced by nano-TiO2 and MWNTs
  133. A text-Image feature mapping algorithm based on transfer learning
  134. Fast recognition algorithm for static traffic sign information
  135. Topical Issue: Clean Energy: Materials, Processes and Energy Generation
  136. An investigation of the melting process of RT-35 filled circular thermal energy storage system
  137. Numerical analysis on the dynamic response of a plate-and-frame membrane humidifier for PEMFC vehicles under various operating conditions
  138. Energy converting layers for thin-film flexible photovoltaic structures
  139. Effect of convection heat transfer on thermal energy storage unit
Heruntergeladen am 12.10.2025 von https://www.degruyterbrill.com/document/doi/10.1515/phys-2018-0074/html?lang=de
Button zum nach oben scrollen