Finite-temperature scalar fields and the cosmological constant in an Einstein universe

M. B. Altaie,M.R. Setare
DOI: https://doi.org/10.1103/PhysRevD.67.044018
2003-01-05
Abstract:We study the back reaction effect of massless minimally coupled scalar field at finite temperatures in the background of Einstein universe. Substituting for the vacuum expectation value of the components of the energy-momentum tensor on the RHS of the Einstein equation, we deduce a relationship between the radius of the universe and its temperature. This relationship exhibit a maximum temperature, below the Planck scale, at which the system changes its behaviour drastically. The results are compared with the case of a conformally coupled field. An investigation into the values of the cosmological constant exhibit a remarkable difference between the conformally coupled case and the minimally coupled one.
General Relativity and Quantum Cosmology
What problem does this paper attempt to address?
The problem that this paper attempts to solve is the flexibility and convenience of data integration and transformation in the database. Specifically, the author designed a script language (Script Language) to convert the original data into the target data through calculation formulas, and this script language can be translated into the corresponding SQL language, and finally the calculation is achieved through dynamic SQL. ### Main problems and solutions 1. **Flexibility of data transformation**: - Traditional database operations usually require writing complex SQL statements or program codes to achieve data transformation, which is not flexible enough when requirements change. - This script language allows users to respond to changing requirements by modifying the calculation formulas in the text file without changing the compiled program. 2. **Convenience of data operations**: - The script language supports common database operations, such as insert, update, delete, union, intersect, and minus, etc. - Users can define these operations through simple text editing, thus simplifying the data processing flow. 3. **Implementation of dynamic SQL**: - The script language can be translated into dynamic SQL, which means that different SQL queries can be generated according to different inputs at runtime, improving the adaptability and efficiency of the system. ### Example illustrations - **Insert operation**: ```markdown { table: drop_call command: insert * = distinct item1 * = item2 * = item3 from: table_name where: item1 > 80 } ``` The corresponding SQL statement is: ```sql insert into table_name select distinct item1, item2, item3 from table_name where item1 > 80; ``` - **Update operation**: ```markdown { table: table_name command: update target_item_1 = value_item_1 target_item_2 = value_item_2 where: condition } ``` The corresponding SQL statement is: ```sql update table_name set target_item_1 = value_item_1, target_item_2 = value_item_2 where condition; ``` In this way, this script language provides an efficient and flexible data processing method, making database operations more simple and easy to maintain.