[fix] make linter happy
This commit is contained in:
@@ -23,7 +23,7 @@ private val TABLE_Y = arrayOf<Double>(
|
||||
0.328158438205719, 0.312913507223129, 0.298821419477463)
|
||||
|
||||
fun adiab2024(e: Double, u: Double): Double {
|
||||
val delta = e - u - 200;
|
||||
val delta = e - u - 200
|
||||
|
||||
if (delta < 3000) {
|
||||
return 1.0
|
||||
|
||||
@@ -9,7 +9,6 @@ import com.github.ajalt.clikt.parameters.options.default
|
||||
import com.github.ajalt.clikt.parameters.options.flag
|
||||
import com.github.ajalt.clikt.parameters.options.help
|
||||
import com.github.ajalt.clikt.parameters.options.option
|
||||
import com.github.ajalt.clikt.parameters.types.boolean
|
||||
import com.github.ajalt.clikt.parameters.types.double
|
||||
import kotlinx.coroutines.runBlocking
|
||||
import kotlinx.html.*
|
||||
|
||||
@@ -22,7 +22,7 @@ import space.kscience.plotly.models.TraceType
|
||||
import kotlin.math.pow
|
||||
|
||||
fun main() {
|
||||
val maxDelta = (WALL_R - WALL_L);
|
||||
val maxDelta = (WALL_R - WALL_L)
|
||||
|
||||
val rearTrapInterpolator = RearTrapInterpolator()
|
||||
val range = (WALL_L - 10.0)..18600.0 step 10.0
|
||||
|
||||
@@ -10,7 +10,7 @@ import space.kscience.kmath.structures.asBuffer
|
||||
import space.kscience.plotly.models.ScatterMode
|
||||
|
||||
fun main() {
|
||||
val maxDelta = (WALL_R - WALL_L);
|
||||
val maxDelta = (WALL_R - WALL_L)
|
||||
|
||||
val interpolator = TrapInterpolator()
|
||||
Plotly.page {
|
||||
|
||||
Reference in New Issue
Block a user