Python PyBaseFieldSource Example

Introduction

The python pybasefieldsource example is extracted from the most popular open source projects, you can refer to the following example for usage.

Programming language: Python

Namespace/package name: orbit_utils

Example#1
File: rk_tracker_quad_test.pyProject: luxiaohan/py-orbit-code

	def __init__(self,K):
		PyBaseFieldSource.__init__(self)
		self.K = K

Example#2
File: rk_tracker_r_and_p_test.pyProject: luxiaohan/py-orbit-code

	def __init__(self):
		PyBaseFieldSource.__init__(self)

Example#3
File: rk_tracker_capacitor_test.pyProject: luxiaohan/py-orbit-code

	def __init__(self,Ex,Ey,E0):
		PyBaseFieldSource.__init__(self)
		self.Ex = Ex
		self.Ey = Ey
		self.E0 = E0